@pingux/astro 1.13.0 → 1.14.0-alpha.2
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/lib/cjs/components/CopyText/CopyText.js +43 -9
- package/lib/cjs/components/CopyText/CopyText.test.js +9 -0
- package/lib/cjs/hooks/useAriaLabelWarning/useAriaLabelWarning.js +9 -10
- package/lib/cjs/hooks/useAriaLabelWarning/useAriaLabelWarning.test.js +1 -1
- package/lib/cjs/hooks/useDevelopmentWarning/index.js +18 -0
- package/lib/cjs/hooks/useDevelopmentWarning/useDevelopmentWarning.js +28 -0
- package/lib/cjs/hooks/useDevelopmentWarning/useDevelopmentWarning.test.js +43 -0
- package/lib/cjs/recipes/AttributeMappingReadOnlyField.stories.js +165 -0
- package/lib/cjs/styles/variants/boxes.js +3 -1
- package/lib/components/CopyText/CopyText.js +45 -11
- package/lib/components/CopyText/CopyText.test.js +9 -0
- package/lib/hooks/useAriaLabelWarning/useAriaLabelWarning.js +7 -10
- package/lib/hooks/useAriaLabelWarning/useAriaLabelWarning.test.js +1 -1
- package/lib/hooks/useDevelopmentWarning/index.js +1 -0
- package/lib/hooks/useDevelopmentWarning/useDevelopmentWarning.js +17 -0
- package/lib/hooks/useDevelopmentWarning/useDevelopmentWarning.test.js +37 -0
- package/lib/recipes/AttributeMappingReadOnlyField.stories.js +145 -0
- package/lib/styles/variants/boxes.js +3 -1
- package/package.json +1 -1
- package/NOTICE.html +0 -4311
@@ -0,0 +1,145 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import CreateIcon from 'mdi-react/CreateIcon';
|
3
|
+
import { Box, Chip, IconButton, Text, Icon, Separator, TextField, HelpHint } from '../index';
|
4
|
+
import { jsx as ___EmotionJSX } from "@emotion/react";
|
5
|
+
export default {
|
6
|
+
title: 'Recipes/AttributeMappingReadOnlyField'
|
7
|
+
};
|
8
|
+
export var Default = function Default() {
|
9
|
+
var Row = function Row(props) {
|
10
|
+
var withChip = props.withChip,
|
11
|
+
withTooltip = props.withTooltip,
|
12
|
+
leftValue = props.leftValue,
|
13
|
+
rightValue = props.rightValue;
|
14
|
+
return ___EmotionJSX(Box, {
|
15
|
+
isRow: true,
|
16
|
+
alignItems: "center",
|
17
|
+
mt: "10px"
|
18
|
+
}, ___EmotionJSX(TextField, {
|
19
|
+
isReadOnly: true,
|
20
|
+
value: leftValue,
|
21
|
+
labelProps: {
|
22
|
+
mb: 0
|
23
|
+
},
|
24
|
+
controlProps: {
|
25
|
+
variant: 'input.small',
|
26
|
+
'aria-label': "input ".concat(leftValue),
|
27
|
+
sx: {
|
28
|
+
width: '165px'
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}), ___EmotionJSX(Separator, {
|
32
|
+
sx: {
|
33
|
+
width: '21px',
|
34
|
+
ml: '2px',
|
35
|
+
mr: '2px'
|
36
|
+
}
|
37
|
+
}), ___EmotionJSX(TextField, {
|
38
|
+
isReadOnly: true,
|
39
|
+
value: rightValue,
|
40
|
+
labelProps: {
|
41
|
+
mb: 0
|
42
|
+
},
|
43
|
+
controlProps: {
|
44
|
+
variant: 'input.small',
|
45
|
+
'aria-label': "input ".concat(rightValue),
|
46
|
+
sx: {
|
47
|
+
width: '165px'
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}), withChip && ___EmotionJSX(Chip, {
|
51
|
+
label: "Required",
|
52
|
+
sx: {
|
53
|
+
width: '65px',
|
54
|
+
height: '22px',
|
55
|
+
alignSelf: 'center',
|
56
|
+
minWidth: 'fit-content',
|
57
|
+
border: '1px solid',
|
58
|
+
borderColor: 'neutral.80',
|
59
|
+
backgroundColor: 'white !important',
|
60
|
+
ml: 8,
|
61
|
+
'& span': {
|
62
|
+
fontSize: 'sm',
|
63
|
+
lineHeight: 1,
|
64
|
+
color: '#253746'
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}), withTooltip && ___EmotionJSX(Box, {
|
68
|
+
ml: "5px",
|
69
|
+
height: "15px",
|
70
|
+
width: "15px"
|
71
|
+
}, ___EmotionJSX(HelpHint, {
|
72
|
+
tooltipProps: {
|
73
|
+
direction: 'bottom'
|
74
|
+
}
|
75
|
+
}, "Population set to default")));
|
76
|
+
};
|
77
|
+
|
78
|
+
return ___EmotionJSX(Box, null, ___EmotionJSX(Box, {
|
79
|
+
isRow: true,
|
80
|
+
alignItems: "center",
|
81
|
+
mb: "15px"
|
82
|
+
}, ___EmotionJSX(Text, {
|
83
|
+
sx: {
|
84
|
+
fontSize: 'lg',
|
85
|
+
lineHeight: '21px',
|
86
|
+
fontWeight: 3,
|
87
|
+
color: 'text.primary'
|
88
|
+
}
|
89
|
+
}, "Attribute Mapping"), ___EmotionJSX(Box, null, ___EmotionJSX(IconButton, {
|
90
|
+
ml: "5px",
|
91
|
+
variant: "inverted",
|
92
|
+
"aria-label": "edit header button"
|
93
|
+
}, ___EmotionJSX(Icon, {
|
94
|
+
icon: CreateIcon,
|
95
|
+
size: 18
|
96
|
+
})))), ___EmotionJSX(Box, {
|
97
|
+
backgroundColor: "accent.99",
|
98
|
+
width: "450px",
|
99
|
+
padding: "10px 10px 25px 10px"
|
100
|
+
}, ___EmotionJSX(Box, {
|
101
|
+
isRow: true,
|
102
|
+
sx: {
|
103
|
+
width: '100%'
|
104
|
+
}
|
105
|
+
}, ___EmotionJSX(Box, {
|
106
|
+
sx: {
|
107
|
+
width: 'calc(50% - 22px)'
|
108
|
+
}
|
109
|
+
}, ___EmotionJSX(Text, {
|
110
|
+
sx: {
|
111
|
+
fontWeight: 3,
|
112
|
+
fontSize: 'md',
|
113
|
+
lineHeight: '18px',
|
114
|
+
mb: '5px'
|
115
|
+
}
|
116
|
+
}, "PingOne")), ___EmotionJSX(Box, {
|
117
|
+
sx: {
|
118
|
+
width: 'calc(50% - 22px)'
|
119
|
+
}
|
120
|
+
}, ___EmotionJSX(Text, {
|
121
|
+
sx: {
|
122
|
+
fontWeight: 3,
|
123
|
+
fontSize: 'md',
|
124
|
+
lineHeight: '18px',
|
125
|
+
mb: '5px'
|
126
|
+
}
|
127
|
+
}, "Google Suites"))), ___EmotionJSX(Separator, null), ___EmotionJSX(Row, {
|
128
|
+
withChip: true,
|
129
|
+
leftValue: "UserId",
|
130
|
+
rightValue: "mdorey"
|
131
|
+
}), ___EmotionJSX(Row, {
|
132
|
+
leftValue: "givenName",
|
133
|
+
rightValue: "firstName"
|
134
|
+
}), ___EmotionJSX(Row, {
|
135
|
+
leftValue: "familyName",
|
136
|
+
rightValue: "lastName"
|
137
|
+
}), ___EmotionJSX(Row, {
|
138
|
+
withTooltip: true,
|
139
|
+
leftValue: "population",
|
140
|
+
rightValue: "population"
|
141
|
+
}), ___EmotionJSX(Row, {
|
142
|
+
leftValue: "password",
|
143
|
+
rightValue: "password"
|
144
|
+
})));
|
145
|
+
};
|
@@ -152,12 +152,14 @@ var textFieldInContainerSlot = {
|
|
152
152
|
var copy = {
|
153
153
|
alignItems: 'center',
|
154
154
|
width: 'max-content',
|
155
|
-
cursor: 'pointer',
|
156
155
|
'& .is-focused': {
|
157
156
|
outline: '1px solid',
|
158
157
|
outlineColor: 'active',
|
159
158
|
outlineOffset: '4px',
|
160
159
|
borderRadius: '4px'
|
160
|
+
},
|
161
|
+
'& span': {
|
162
|
+
cursor: 'text'
|
161
163
|
}
|
162
164
|
};
|
163
165
|
var topShadowScrollbox = {
|