@pingux/astro 1.0.0-alpha.5 → 1.0.0-alpha.9

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 (30) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/lib/cjs/components/AccordionItem/AccordionItem.js +3 -1
  3. package/lib/cjs/components/CopyText/CopyText.js +3 -73
  4. package/lib/cjs/components/Tab/Tab.js +10 -3
  5. package/lib/cjs/components/Tabs/Tabs.js +4 -1
  6. package/lib/cjs/components/Tabs/Tabs.stories.js +57 -2
  7. package/lib/cjs/components/Tabs/Tabs.test.js +34 -0
  8. package/lib/cjs/hooks/useCopyToClipboard/index.js +18 -0
  9. package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.js +83 -0
  10. package/lib/cjs/hooks/useCopyToClipboard/useCopyToClipboard.test.js +79 -0
  11. package/lib/cjs/recipes/CopyToClipboard.stories.js +45 -0
  12. package/lib/cjs/recipes/RadioButtonsWithLinks.stories.js +146 -0
  13. package/lib/cjs/styles/forms/input.js +11 -0
  14. package/lib/cjs/styles/variants/accordion.js +2 -2
  15. package/lib/cjs/styles/variants/tabs.js +1 -0
  16. package/lib/components/AccordionItem/AccordionItem.js +3 -1
  17. package/lib/components/CopyText/CopyText.js +2 -71
  18. package/lib/components/Tab/Tab.js +10 -3
  19. package/lib/components/Tabs/Tabs.js +4 -1
  20. package/lib/components/Tabs/Tabs.stories.js +53 -0
  21. package/lib/components/Tabs/Tabs.test.js +38 -0
  22. package/lib/hooks/useCopyToClipboard/index.js +1 -0
  23. package/lib/hooks/useCopyToClipboard/useCopyToClipboard.js +69 -0
  24. package/lib/hooks/useCopyToClipboard/useCopyToClipboard.test.js +64 -0
  25. package/lib/recipes/CopyToClipboard.stories.js +25 -0
  26. package/lib/recipes/RadioButtonsWithLinks.stories.js +120 -0
  27. package/lib/styles/forms/input.js +11 -0
  28. package/lib/styles/variants/accordion.js +2 -2
  29. package/lib/styles/variants/tabs.js +1 -0
  30. package/package.json +2 -2
@@ -0,0 +1,120 @@
1
+ import _mapInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/map";
2
+ import _slicedToArray from "@babel/runtime-corejs3/helpers/esm/slicedToArray";
3
+ import React, { useState } from 'react';
4
+ import CloseIcon from 'mdi-react/CloseIcon';
5
+ import { Box, Button, Icon, IconButton, Text } from '../index';
6
+ import RadioField from '../components/RadioField';
7
+ import RadioGroupField from '../components/RadioGroupField';
8
+ import { jsx as ___EmotionJSX } from "@emotion/react";
9
+ export default {
10
+ title: 'Recipes/RadioButtonsWithLinks'
11
+ };
12
+ export var Default = function Default() {
13
+ var roles = [{
14
+ name: 'Client Application Developer'
15
+ }, {
16
+ name: 'Environment Admin',
17
+ isDisabled: true
18
+ }, {
19
+ name: 'Identity Data Admin',
20
+ isDisabled: true
21
+ }, {
22
+ name: 'Organization Admin'
23
+ }];
24
+ var titleSx = {
25
+ fontSize: 'md',
26
+ color: 'neutral.20',
27
+ fontWeight: 2
28
+ };
29
+ var subtitleSx = {
30
+ fontSize: 'md',
31
+ color: 'neutral.10'
32
+ };
33
+
34
+ var RadioFieldWithButton = function RadioFieldWithButton(_ref) {
35
+ var fieldName = _ref.fieldName,
36
+ isDisabled = _ref.isDisabled;
37
+
38
+ var _useState = useState(false),
39
+ _useState2 = _slicedToArray(_useState, 2),
40
+ isOpen = _useState2[0],
41
+ setIsOpen = _useState2[1];
42
+
43
+ return ___EmotionJSX(Box, null, ___EmotionJSX(Box, {
44
+ isRow: true,
45
+ alignItems: "center"
46
+ }, ___EmotionJSX(RadioField, {
47
+ value: fieldName,
48
+ label: fieldName,
49
+ isDisabled: isDisabled
50
+ }), ___EmotionJSX(Button, {
51
+ variant: "text",
52
+ mb: "xs",
53
+ ml: "md",
54
+ onPress: function onPress() {
55
+ return setIsOpen(function (prev) {
56
+ return !prev;
57
+ });
58
+ },
59
+ isDisabled: isDisabled
60
+ }, "".concat(isOpen ? 'Hide' : 'Show', " Permissions"))), isOpen && ___EmotionJSX(PermissionsList, {
61
+ onPress: function onPress() {
62
+ return setIsOpen(false);
63
+ }
64
+ }));
65
+ };
66
+
67
+ var PermissionsList = function PermissionsList(_ref2) {
68
+ var onPress = _ref2.onPress;
69
+ return ___EmotionJSX(Box, {
70
+ p: "md",
71
+ bg: "neutral.95"
72
+ }, ___EmotionJSX(Box, {
73
+ isRow: true,
74
+ justifyContent: "space-between",
75
+ mb: "sm"
76
+ }, ___EmotionJSX(Text, {
77
+ sx: {
78
+ fontWeight: 2
79
+ }
80
+ }, "Permissions"), ___EmotionJSX(IconButton, {
81
+ onPress: onPress
82
+ }, ___EmotionJSX(Icon, {
83
+ icon: CloseIcon
84
+ }))), ___EmotionJSX(Box, null, ___EmotionJSX(Text, {
85
+ sx: titleSx,
86
+ mb: "xs"
87
+ }, "Resource"), ___EmotionJSX(Text, {
88
+ sx: subtitleSx,
89
+ mb: "sm"
90
+ }, "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."), ___EmotionJSX(Text, {
91
+ sx: titleSx,
92
+ mb: "xs"
93
+ }, "Push Credentials"), ___EmotionJSX(Text, {
94
+ sx: subtitleSx,
95
+ mb: "sm"
96
+ }, "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod"), ___EmotionJSX(Text, {
97
+ sx: titleSx,
98
+ mb: "xs"
99
+ }, "Organization"), ___EmotionJSX(Text, {
100
+ sx: subtitleSx,
101
+ mb: "sm"
102
+ }, "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco"), ___EmotionJSX(Text, {
103
+ sx: titleSx,
104
+ mb: "xs"
105
+ }, "Image"), ___EmotionJSX(Text, {
106
+ sx: subtitleSx,
107
+ mb: "sm"
108
+ }, "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod")));
109
+ };
110
+
111
+ return ___EmotionJSX(RadioGroupField, null, _mapInstanceProperty(roles).call(roles, function (_ref3) {
112
+ var name = _ref3.name,
113
+ isDisabled = _ref3.isDisabled;
114
+ return ___EmotionJSX(RadioFieldWithButton, {
115
+ fieldName: name,
116
+ isDisabled: isDisabled,
117
+ key: name
118
+ });
119
+ }));
120
+ };
@@ -49,6 +49,17 @@ export var input = _objectSpread(_objectSpread({}, text.inputValue), {}, {
49
49
  '&::placeholder': text.placeholder,
50
50
  '&::-ms-expand': {
51
51
  display: 'none'
52
+ },
53
+ '&::-webkit-contacts-auto-fill-button, &::-webkit-credentials-auto-fill-button': {
54
+ visibility: 'hidden',
55
+ display: 'none !important',
56
+ pointerEvents: 'none',
57
+ height: 0,
58
+ width: 0,
59
+ margin: 0
60
+ },
61
+ '&::-ms-reveal, &::-ms-clear': {
62
+ display: 'none'
52
63
  }
53
64
  }); // Example variant input
54
65
 
@@ -14,12 +14,12 @@ var accordionTitle = {
14
14
  var accordion = {
15
15
  display: 'flex',
16
16
  mt: '5px',
17
- mb: '5px',
17
+ mb: '20px',
18
18
  alignItems: 'flex-start'
19
19
  };
20
20
  var accordionBody = {
21
21
  display: 'none !important',
22
- p: 'md',
22
+ pt: 'md',
23
23
  width: '100%',
24
24
  '.is-open &': {
25
25
  display: 'flex !important'
@@ -5,6 +5,7 @@ export var tab = {
5
5
  display: 'inline-flex',
6
6
  outline: 'none',
7
7
  transform: 'translateY(1px)',
8
+ width: '100%',
8
9
  '&.is-focused': {
9
10
  boxShadow: 'focus'
10
11
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "1.0.0-alpha.5",
3
+ "version": "1.0.0-alpha.9",
4
4
  "description": "PingUX themeable React component library",
5
5
  "author": "uxdev@pingidentity.com",
6
6
  "license": "Apache-2.0",
@@ -129,7 +129,7 @@
129
129
  "chroma-js": "^2.1.0",
130
130
  "classnames": "^2.2.6",
131
131
  "emotion-normalize": "^11.0.1",
132
- "lodash": "^4.17.20",
132
+ "lodash": "^4.17.21",
133
133
  "mdi-react": "^7.4.0",
134
134
  "moment": "^2.29.1",
135
135
  "prop-types": "^15.7.2",