@digigov/ui 1.2.0-a7ffb5dc → 1.2.0-dcbd7ded

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.
Files changed (54) hide show
  1. package/app/QrCodeViewer/QRCode.stories.d.ts +1 -0
  2. package/app/QrCodeViewer/index.d.ts +1 -0
  3. package/app/QrCodeViewer/index.js +2 -1
  4. package/app/ThemeOptions/index.d.ts +1 -1
  5. package/cjs/app/QrCodeViewer/index.js +3 -2
  6. package/cjs/lazy/index.js +0 -117
  7. package/cjs/navigation/Pagination/__stories__/PaginationWithSmallFont/index.js +2 -2
  8. package/cjs/navigation/Pagination/__stories__/WithResultsPerPage/index.js +2 -2
  9. package/cjs/registry/index.js +0 -12
  10. package/index.js +1 -1
  11. package/lazy/index.js +0 -91
  12. package/lazy.d.ts +37 -50
  13. package/navigation/Drawer/auto.d.ts +1 -1
  14. package/navigation/Pagination/__stories__/PaginationWithSmallFont/index.js +1 -1
  15. package/navigation/Pagination/__stories__/WithResultsPerPage/index.js +1 -1
  16. package/package.json +4 -4
  17. package/registry/index.js +0 -12
  18. package/registry.d.ts +0 -6
  19. package/src/app/QrCodeViewer/index.tsx +2 -0
  20. package/src/app/ThemeOptions/index.tsx +1 -1
  21. package/src/lazy.js +0 -13
  22. package/src/navigation/Pagination/__stories__/PaginationWithSmallFont.tsx +1 -1
  23. package/src/navigation/Pagination/__stories__/WithResultsPerPage.tsx +1 -1
  24. package/src/registry.js +0 -12
  25. package/cjs/misc/KitchenSink/index.js +0 -93
  26. package/cjs/utils/Kitchensink/AllComponents/index.js +0 -16
  27. package/cjs/utils/Kitchensink/KitchensinkByCategory/index.js +0 -39
  28. package/cjs/utils/Kitchensink/KitchensinkByLetter/index.js +0 -26
  29. package/cjs/utils/Kitchensink/KitchensinkComponent/index.js +0 -55
  30. package/cjs/utils/Kitchensink/KitchensinkDashboard/index.js +0 -47
  31. package/misc/KitchenSink/index.d.ts +0 -8
  32. package/misc/KitchenSink/index.js +0 -8
  33. package/misc/KitchenSink/package.json +0 -6
  34. package/src/misc/KitchenSink/index.tsx +0 -8
  35. package/src/utils/Kitchensink/AllComponents.tsx +0 -6
  36. package/src/utils/Kitchensink/KitchensinkByCategory.tsx +0 -56
  37. package/src/utils/Kitchensink/KitchensinkByLetter.tsx +0 -35
  38. package/src/utils/Kitchensink/KitchensinkComponent.tsx +0 -70
  39. package/src/utils/Kitchensink/KitchensinkDashboard.tsx +0 -56
  40. package/utils/Kitchensink/AllComponents/index.js +0 -9
  41. package/utils/Kitchensink/AllComponents/package.json +0 -6
  42. package/utils/Kitchensink/AllComponents.d.ts +0 -2
  43. package/utils/Kitchensink/KitchensinkByCategory/index.js +0 -32
  44. package/utils/Kitchensink/KitchensinkByCategory/package.json +0 -6
  45. package/utils/Kitchensink/KitchensinkByCategory.d.ts +0 -6
  46. package/utils/Kitchensink/KitchensinkByLetter/index.js +0 -19
  47. package/utils/Kitchensink/KitchensinkByLetter/package.json +0 -6
  48. package/utils/Kitchensink/KitchensinkByLetter.d.ts +0 -6
  49. package/utils/Kitchensink/KitchensinkComponent/index.js +0 -45
  50. package/utils/Kitchensink/KitchensinkComponent/package.json +0 -6
  51. package/utils/Kitchensink/KitchensinkComponent.d.ts +0 -10
  52. package/utils/Kitchensink/KitchensinkDashboard/index.js +0 -40
  53. package/utils/Kitchensink/KitchensinkDashboard/package.json +0 -6
  54. package/utils/Kitchensink/KitchensinkDashboard.d.ts +0 -5
@@ -1,56 +0,0 @@
1
- import React from 'react';
2
- import {
3
- KitchenSinkCategory,
4
- KitchenSinkHeading,
5
- } from '@digigov/ui/misc/KitchenSink';
6
- import { KitchensinkByLetter } from '@digigov/ui/utils/Kitchensink/KitchensinkByLetter';
7
-
8
- export interface KitchensinkByCategoryInterface {
9
- category: string;
10
- stories: React.ReactElement[];
11
- }
12
-
13
- export const KitchensinkByCategory = ({
14
- category,
15
- stories,
16
- }: KitchensinkByCategoryInterface) => {
17
- const alphabeticalOrder = Object.keys(stories).reduce(
18
- (abStories, componentStoriesKey) => {
19
- const componentStories = stories[componentStoriesKey];
20
- if (!componentStories.default.component) {
21
- throw new Error(`no component was found in ${componentStoriesKey}`);
22
- }
23
- const name = componentStories.default.displayName;
24
- console.log('componentStories', componentStories, 'stories', stories);
25
- if (!name) {
26
- throw new Error(`no name was found for ${componentStoriesKey}`);
27
- }
28
- const letter = name[0];
29
- if (abStories[letter]) {
30
- abStories[letter].push(componentStories);
31
- } else {
32
- abStories[letter] = [componentStories];
33
- }
34
- return abStories;
35
- },
36
- {}
37
- );
38
- return (
39
- <div>
40
- <KitchenSinkHeading>{category}</KitchenSinkHeading>
41
- <KitchenSinkCategory>
42
- {Object.keys(alphabeticalOrder)
43
- .sort()
44
- .map((letter, index) => {
45
- return (
46
- <KitchensinkByLetter
47
- letter={letter}
48
- stories={alphabeticalOrder[letter]}
49
- key={index}
50
- />
51
- );
52
- })}
53
- </KitchenSinkCategory>
54
- </div>
55
- );
56
- };
@@ -1,35 +0,0 @@
1
- import React from 'react';
2
- import Heading from '@digigov/react-core/Heading';
3
- import { KitchenSinkLetterContent } from '@digigov/react-core/KitchenSinkLetterContent';
4
- import { KitchensinkComponent } from '@digigov/ui/utils/Kitchensink/KitchensinkComponent';
5
-
6
- export interface KitchensinkByLetterInterface {
7
- letter: string;
8
- stories: any;
9
- }
10
-
11
- export const KitchensinkByLetter = ({
12
- letter,
13
- stories,
14
- }: KitchensinkByLetterInterface) => {
15
- return (
16
- <div>
17
- <Heading>{letter}</Heading>
18
- <KitchenSinkLetterContent>
19
- {stories.map((story, index) => {
20
- return (
21
- <KitchensinkComponent
22
- tags={story.default.tags}
23
- title={story.default.displayName}
24
- description={story.default.description}
25
- link={story.default.link}
26
- width={story.default.defaultWidth}
27
- stories={story}
28
- key={index}
29
- />
30
- );
31
- })}
32
- </KitchenSinkLetterContent>
33
- </div>
34
- );
35
- };
@@ -1,70 +0,0 @@
1
- import React from 'react';
2
- import { KitchenSinkCard } from '@digigov/react-core/KitchenSinkCard';
3
- import { KitchenSinkContent } from '@digigov/react-core/KitchenSinkContent';
4
- import { KitchenSinkContentInfo } from '@digigov/react-core/KitchenSinkContentInfo';
5
- import { KitchenSinkContentTags } from '@digigov/react-core/KitchenSinkContentTags';
6
- import PhaseBanner, {
7
- PhaseBannerTag,
8
- PhaseBannerText,
9
- } from '@digigov/ui/feedback/PhaseBanner';
10
- import SectionBreak from '@digigov/ui/layouts/SectionBreak';
11
- import Link from '@digigov/ui/navigation/Link';
12
- import { Paragraph } from '@digigov/ui/typography';
13
- import Heading from '@digigov/ui/typography/Heading';
14
-
15
- export interface KitchensinkComponentInterface {
16
- tags?: string[]; // ex. Experimental
17
- title: string;
18
- description?: string;
19
- link?: string;
20
- stories: React.ReactElement[];
21
- width?: 'md' | 'lg';
22
- }
23
- export const KitchensinkComponent = ({
24
- tags = [],
25
- title,
26
- description,
27
- link,
28
- stories,
29
- width = 'md',
30
- }: KitchensinkComponentInterface) => {
31
- return (
32
- <KitchenSinkContent wide={width === 'lg'}>
33
- <KitchenSinkContentInfo>
34
- <KitchenSinkContentTags>
35
- {tags &&
36
- tags.map((tag, index) => {
37
- return (
38
- <PhaseBanner key={index}>
39
- <PhaseBannerTag>{tag}</PhaseBannerTag>
40
- <PhaseBannerText>
41
- Αυτή είναι μία νέα υπηρεσία – τα{' '}
42
- <Link href="#feedback">σχόλιά</Link> σας θα μας βοηθήσουν να
43
- τη βελτιώσουμε.
44
- </PhaseBannerText>
45
- </PhaseBanner>
46
- );
47
- })}
48
- </KitchenSinkContentTags>
49
- <Heading size="lg">{title}</Heading>
50
- <Paragraph>{description}</Paragraph>
51
- {link && <Link href={link}>View on GOV.GR Design System</Link>}
52
- <SectionBreak />
53
- </KitchenSinkContentInfo>
54
- {Object.keys(stories)
55
- .filter((story) => story !== 'default')
56
- .map((story, index) => {
57
- const Component = stories[story];
58
- return (
59
- <div key={index}>
60
- <SectionBreak />
61
- <Heading size="sm">{story}</Heading>
62
- <KitchenSinkCard>
63
- <Component />
64
- </KitchenSinkCard>
65
- </div>
66
- );
67
- })}
68
- </KitchenSinkContent>
69
- );
70
- };
@@ -1,56 +0,0 @@
1
- import React from 'react';
2
- import { KitchenSinkAllComponents } from '@digigov/react-core/KitchenSinkAllComponents';
3
- import Paragraph from '@digigov/react-core/Paragraph';
4
- import { KitchensinkByCategory } from '@digigov/ui/utils/Kitchensink/KitchensinkByCategory';
5
-
6
- export interface KitchenSinkDashboardInterface {
7
- stories: any;
8
- }
9
-
10
- export const KitchenSinkDashboard = ({
11
- stories,
12
- }: KitchenSinkDashboardInterface) => {
13
- const categoryOrder = Object.keys(stories).reduce(
14
- (catStories, componentStoriesKey) => {
15
- const componentStories = stories[componentStoriesKey];
16
- if (componentStories.default.ignore) {
17
- return catStories;
18
- }
19
- if (!componentStories.default.component) {
20
- throw new Error(`no component was found in ${componentStoriesKey}`);
21
- }
22
- const title = componentStories.default.title.split('/')[1];
23
- if (!title) {
24
- throw new Error(`no title was found for ${componentStoriesKey}`);
25
- }
26
- const category = title;
27
- if (catStories[category]) {
28
- catStories[category].push(componentStories);
29
- } else {
30
- catStories[category] = [componentStories];
31
- }
32
- return catStories;
33
- },
34
- {}
35
- );
36
- return (
37
- <div>
38
- <Paragraph fontSize={72} fontWeight="bold">
39
- Components
40
- </Paragraph>
41
- <KitchenSinkAllComponents>
42
- {Object.keys(categoryOrder)
43
- .sort((a, b) => (a > b ? -1 : 1))
44
- .map((category, index) => {
45
- return (
46
- <KitchensinkByCategory
47
- category={category}
48
- stories={categoryOrder[category]}
49
- key={index}
50
- />
51
- );
52
- })}
53
- </KitchenSinkAllComponents>
54
- </div>
55
- );
56
- };
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- import { stories } from '@digigov/ui/registry';
3
- import { KitchenSinkDashboard } from '@digigov/ui/utils/Kitchensink/KitchensinkDashboard';
4
- var _ref = /*#__PURE__*/React.createElement(KitchenSinkDashboard, {
5
- stories: stories
6
- });
7
- export var AllComponents = function AllComponents() {
8
- return _ref;
9
- };
@@ -1,6 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "./index.js",
4
- "types": "./index.d.ts",
5
- "main": "../../../cjs/utils/Kitchensink/AllComponents/index.js"
6
- }
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const AllComponents: () => JSX.Element;
@@ -1,32 +0,0 @@
1
- import React from 'react';
2
- import { KitchenSinkCategory, KitchenSinkHeading } from '@digigov/ui/misc/KitchenSink';
3
- import { KitchensinkByLetter } from '@digigov/ui/utils/Kitchensink/KitchensinkByLetter';
4
- export var KitchensinkByCategory = function KitchensinkByCategory(_ref) {
5
- var category = _ref.category,
6
- stories = _ref.stories;
7
- var alphabeticalOrder = Object.keys(stories).reduce(function (abStories, componentStoriesKey) {
8
- var componentStories = stories[componentStoriesKey];
9
- if (!componentStories["default"].component) {
10
- throw new Error("no component was found in ".concat(componentStoriesKey));
11
- }
12
- var name = componentStories["default"].displayName;
13
- console.log('componentStories', componentStories, 'stories', stories);
14
- if (!name) {
15
- throw new Error("no name was found for ".concat(componentStoriesKey));
16
- }
17
- var letter = name[0];
18
- if (abStories[letter]) {
19
- abStories[letter].push(componentStories);
20
- } else {
21
- abStories[letter] = [componentStories];
22
- }
23
- return abStories;
24
- }, {});
25
- return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(KitchenSinkHeading, null, category), /*#__PURE__*/React.createElement(KitchenSinkCategory, null, Object.keys(alphabeticalOrder).sort().map(function (letter, index) {
26
- return /*#__PURE__*/React.createElement(KitchensinkByLetter, {
27
- letter: letter,
28
- stories: alphabeticalOrder[letter],
29
- key: index
30
- });
31
- })));
32
- };
@@ -1,6 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "./index.js",
4
- "types": "./index.d.ts",
5
- "main": "../../../cjs/utils/Kitchensink/KitchensinkByCategory/index.js"
6
- }
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export interface KitchensinkByCategoryInterface {
3
- category: string;
4
- stories: React.ReactElement[];
5
- }
6
- export declare const KitchensinkByCategory: ({ category, stories, }: KitchensinkByCategoryInterface) => JSX.Element;
@@ -1,19 +0,0 @@
1
- import React from 'react';
2
- import Heading from '@digigov/react-core/Heading';
3
- import { KitchenSinkLetterContent } from '@digigov/react-core/KitchenSinkLetterContent';
4
- import { KitchensinkComponent } from '@digigov/ui/utils/Kitchensink/KitchensinkComponent';
5
- export var KitchensinkByLetter = function KitchensinkByLetter(_ref) {
6
- var letter = _ref.letter,
7
- stories = _ref.stories;
8
- return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Heading, null, letter), /*#__PURE__*/React.createElement(KitchenSinkLetterContent, null, stories.map(function (story, index) {
9
- return /*#__PURE__*/React.createElement(KitchensinkComponent, {
10
- tags: story["default"].tags,
11
- title: story["default"].displayName,
12
- description: story["default"].description,
13
- link: story["default"].link,
14
- width: story["default"].defaultWidth,
15
- stories: story,
16
- key: index
17
- });
18
- })));
19
- };
@@ -1,6 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "./index.js",
4
- "types": "./index.d.ts",
5
- "main": "../../../cjs/utils/Kitchensink/KitchensinkByLetter/index.js"
6
- }
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- export interface KitchensinkByLetterInterface {
3
- letter: string;
4
- stories: any;
5
- }
6
- export declare const KitchensinkByLetter: ({ letter, stories, }: KitchensinkByLetterInterface) => JSX.Element;
@@ -1,45 +0,0 @@
1
- import React from 'react';
2
- import { KitchenSinkCard } from '@digigov/react-core/KitchenSinkCard';
3
- import { KitchenSinkContent } from '@digigov/react-core/KitchenSinkContent';
4
- import { KitchenSinkContentInfo } from '@digigov/react-core/KitchenSinkContentInfo';
5
- import { KitchenSinkContentTags } from '@digigov/react-core/KitchenSinkContentTags';
6
- import PhaseBanner, { PhaseBannerTag, PhaseBannerText } from '@digigov/ui/feedback/PhaseBanner';
7
- import SectionBreak from '@digigov/ui/layouts/SectionBreak';
8
- import Link from '@digigov/ui/navigation/Link';
9
- import { Paragraph } from '@digigov/ui/typography';
10
- import Heading from '@digigov/ui/typography/Heading';
11
- var _ref2 = /*#__PURE__*/React.createElement(PhaseBannerText, null, "\u0391\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03AF\u03B1 \u03BD\u03AD\u03B1 \u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1 \u2013 \u03C4\u03B1", ' ', /*#__PURE__*/React.createElement(Link, {
12
- href: "#feedback"
13
- }, "\u03C3\u03C7\u03CC\u03BB\u03B9\u03AC"), " \u03C3\u03B1\u03C2 \u03B8\u03B1 \u03BC\u03B1\u03C2 \u03B2\u03BF\u03B7\u03B8\u03AE\u03C3\u03BF\u03C5\u03BD \u03BD\u03B1 \u03C4\u03B7 \u03B2\u03B5\u03BB\u03C4\u03B9\u03CE\u03C3\u03BF\u03C5\u03BC\u03B5.");
14
- var _ref3 = /*#__PURE__*/React.createElement(SectionBreak, null);
15
- var _ref4 = /*#__PURE__*/React.createElement(SectionBreak, null);
16
- export var KitchensinkComponent = function KitchensinkComponent(_ref) {
17
- var _ref$tags = _ref.tags,
18
- tags = _ref$tags === void 0 ? [] : _ref$tags,
19
- title = _ref.title,
20
- description = _ref.description,
21
- link = _ref.link,
22
- stories = _ref.stories,
23
- _ref$width = _ref.width,
24
- width = _ref$width === void 0 ? 'md' : _ref$width;
25
- return /*#__PURE__*/React.createElement(KitchenSinkContent, {
26
- wide: width === 'lg'
27
- }, /*#__PURE__*/React.createElement(KitchenSinkContentInfo, null, /*#__PURE__*/React.createElement(KitchenSinkContentTags, null, tags && tags.map(function (tag, index) {
28
- return /*#__PURE__*/React.createElement(PhaseBanner, {
29
- key: index
30
- }, /*#__PURE__*/React.createElement(PhaseBannerTag, null, tag), _ref2);
31
- })), /*#__PURE__*/React.createElement(Heading, {
32
- size: "lg"
33
- }, title), /*#__PURE__*/React.createElement(Paragraph, null, description), link && /*#__PURE__*/React.createElement(Link, {
34
- href: link
35
- }, "View on GOV.GR Design System"), _ref3), Object.keys(stories).filter(function (story) {
36
- return story !== 'default';
37
- }).map(function (story, index) {
38
- var Component = stories[story];
39
- return /*#__PURE__*/React.createElement("div", {
40
- key: index
41
- }, _ref4, /*#__PURE__*/React.createElement(Heading, {
42
- size: "sm"
43
- }, story), /*#__PURE__*/React.createElement(KitchenSinkCard, null, /*#__PURE__*/React.createElement(Component, null)));
44
- }));
45
- };
@@ -1,6 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "./index.js",
4
- "types": "./index.d.ts",
5
- "main": "../../../cjs/utils/Kitchensink/KitchensinkComponent/index.js"
6
- }
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- export interface KitchensinkComponentInterface {
3
- tags?: string[];
4
- title: string;
5
- description?: string;
6
- link?: string;
7
- stories: React.ReactElement[];
8
- width?: 'md' | 'lg';
9
- }
10
- export declare const KitchensinkComponent: ({ tags, title, description, link, stories, width, }: KitchensinkComponentInterface) => JSX.Element;
@@ -1,40 +0,0 @@
1
- import React from 'react';
2
- import { KitchenSinkAllComponents } from '@digigov/react-core/KitchenSinkAllComponents';
3
- import Paragraph from '@digigov/react-core/Paragraph';
4
- import { KitchensinkByCategory } from '@digigov/ui/utils/Kitchensink/KitchensinkByCategory';
5
- var _ref2 = /*#__PURE__*/React.createElement(Paragraph, {
6
- fontSize: 72,
7
- fontWeight: "bold"
8
- }, "Components");
9
- export var KitchenSinkDashboard = function KitchenSinkDashboard(_ref) {
10
- var stories = _ref.stories;
11
- var categoryOrder = Object.keys(stories).reduce(function (catStories, componentStoriesKey) {
12
- var componentStories = stories[componentStoriesKey];
13
- if (componentStories["default"].ignore) {
14
- return catStories;
15
- }
16
- if (!componentStories["default"].component) {
17
- throw new Error("no component was found in ".concat(componentStoriesKey));
18
- }
19
- var title = componentStories["default"].title.split('/')[1];
20
- if (!title) {
21
- throw new Error("no title was found for ".concat(componentStoriesKey));
22
- }
23
- var category = title;
24
- if (catStories[category]) {
25
- catStories[category].push(componentStories);
26
- } else {
27
- catStories[category] = [componentStories];
28
- }
29
- return catStories;
30
- }, {});
31
- return /*#__PURE__*/React.createElement("div", null, _ref2, /*#__PURE__*/React.createElement(KitchenSinkAllComponents, null, Object.keys(categoryOrder).sort(function (a, b) {
32
- return a > b ? -1 : 1;
33
- }).map(function (category, index) {
34
- return /*#__PURE__*/React.createElement(KitchensinkByCategory, {
35
- category: category,
36
- stories: categoryOrder[category],
37
- key: index
38
- });
39
- })));
40
- };
@@ -1,6 +0,0 @@
1
- {
2
- "sideEffects": false,
3
- "module": "./index.js",
4
- "types": "./index.d.ts",
5
- "main": "../../../cjs/utils/Kitchensink/KitchensinkDashboard/index.js"
6
- }
@@ -1,5 +0,0 @@
1
- /// <reference types="react" />
2
- export interface KitchenSinkDashboardInterface {
3
- stories: any;
4
- }
5
- export declare const KitchenSinkDashboard: ({ stories, }: KitchenSinkDashboardInterface) => JSX.Element;