@pareto-engineering/design-system 2.0.0-alpha.22 → 2.0.0-alpha.23

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 (50) hide show
  1. package/dist/cjs/b/Button/styles.scss +1 -1
  2. package/dist/cjs/f/common/Label/styles.scss +1 -1
  3. package/dist/cjs/f/fields/ChoicesInput/styles.scss +17 -2
  4. package/dist/cjs/f/fields/SelectInput/SelectInput.js +13 -5
  5. package/dist/cjs/f/fields/SelectInput/styles.scss +13 -8
  6. package/dist/cjs/f/fields/TextInput/TextInput.js +10 -3
  7. package/dist/cjs/f/fields/TextInput/styles.scss +16 -3
  8. package/dist/cjs/f/fields/TextareaInput/TextareaInput.js +3 -3
  9. package/dist/cjs/f/fields/TextareaInput/styles.scss +19 -6
  10. package/dist/cjs/f/fields/index.js +0 -24
  11. package/dist/cjs/form-reset.scss +1 -1
  12. package/dist/es/b/Button/styles.scss +1 -1
  13. package/dist/es/f/common/Label/styles.scss +1 -1
  14. package/dist/es/f/fields/ChoicesInput/styles.scss +17 -2
  15. package/dist/es/f/fields/SelectInput/SelectInput.js +13 -5
  16. package/dist/es/f/fields/SelectInput/styles.scss +13 -8
  17. package/dist/es/f/fields/TextInput/TextInput.js +10 -3
  18. package/dist/es/f/fields/TextInput/styles.scss +16 -3
  19. package/dist/es/f/fields/TextareaInput/TextareaInput.js +3 -3
  20. package/dist/es/f/fields/TextareaInput/styles.scss +19 -6
  21. package/dist/es/f/fields/index.js +0 -3
  22. package/dist/es/form-reset.scss +1 -1
  23. package/package.json +2 -2
  24. package/src/__snapshots__/Storyshots.test.js.snap +124 -378
  25. package/src/stories/f/SelectInput.stories.jsx +10 -8
  26. package/src/stories/f/TextInput.stories.jsx +7 -6
  27. package/src/stories/f/TextareaInput.stories.jsx +4 -4
  28. package/src/ui/b/Button/styles.scss +1 -1
  29. package/src/ui/f/common/Label/styles.scss +1 -1
  30. package/src/ui/f/fields/ChoicesInput/styles.scss +17 -2
  31. package/src/ui/f/fields/SelectInput/SelectInput.jsx +10 -1
  32. package/src/ui/f/fields/SelectInput/styles.scss +13 -8
  33. package/src/ui/f/fields/TextInput/TextInput.jsx +9 -1
  34. package/src/ui/f/fields/TextInput/styles.scss +16 -3
  35. package/src/ui/f/fields/TextareaInput/TextareaInput.jsx +3 -3
  36. package/src/ui/f/fields/TextareaInput/styles.scss +19 -6
  37. package/src/ui/f/fields/index.js +0 -3
  38. package/src/ui/form-reset.scss +1 -1
  39. package/src/stories/f/CheckboxInput.stories.jsx +0 -37
  40. package/src/stories/f/RadioInput.stories.jsx +0 -37
  41. package/src/stories/f/TaskRecommendationInput.stories.jsx +0 -38
  42. package/src/ui/f/fields/CheckboxInput/CheckboxInput.jsx +0 -107
  43. package/src/ui/f/fields/CheckboxInput/index.js +0 -2
  44. package/src/ui/f/fields/CheckboxInput/styles.scss +0 -28
  45. package/src/ui/f/fields/RadioInput/RadioInput.jsx +0 -112
  46. package/src/ui/f/fields/RadioInput/index.js +0 -2
  47. package/src/ui/f/fields/RadioInput/styles.scss +0 -26
  48. package/src/ui/f/fields/TaskRecommendationInput/TaskRecommendationInput.jsx +0 -130
  49. package/src/ui/f/fields/TaskRecommendationInput/index.js +0 -2
  50. package/src/ui/f/fields/TaskRecommendationInput/styles.scss +0 -41
@@ -1,28 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
-
3
- @use "@pareto-engineering/bem";
4
- @use "../../../form.scss";
5
-
6
-
7
- .#{bem.$base}.checkbox-input {
8
- height: 100%;
9
-
10
- .input-content {
11
- border-radius: var(--theme-border-radius);
12
- height: 100%;
13
- }
14
-
15
- .input {
16
- @include form.radio-checkbox-input;
17
- }
18
-
19
-
20
- .not-selected {
21
- @include form.radio-checkbox-input-not-selected;
22
- }
23
-
24
-
25
- .selected {
26
- @include form.radio-checkbox-input-selected;
27
- }
28
- }
@@ -1,112 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- import * as React from 'react'
3
-
4
- import { useLayoutEffect, memo } from 'react'
5
-
6
- import { useField } from 'formik'
7
-
8
- import PropTypes from 'prop-types'
9
-
10
- import styleNames from '@pareto-engineering/bem'
11
-
12
- import { FormLabel, FormDescription } from '../../common'
13
-
14
- // Local Definitions
15
-
16
- const baseClassName = styleNames.base
17
-
18
- const componentClassName = 'radio-input'
19
-
20
- /**
21
- * This is the component description.
22
- */
23
- const RadioInput = ({
24
- id,
25
- className:userClassName,
26
- children,
27
- style,
28
- name,
29
- value,
30
- // ...otherProps
31
- }) => {
32
- useLayoutEffect(() => {
33
- import('./styles.scss')
34
- }, [])
35
-
36
- const [field, meta] = useField(name)
37
- const isOptionSelected = field.value === value
38
-
39
- return (
40
- <div
41
- id={id}
42
- className={[
43
-
44
- baseClassName,
45
-
46
- componentClassName,
47
- userClassName,
48
- ]
49
- .filter((e) => e)
50
- .join(' ')}
51
- style={style}
52
- // {...otherProps}
53
- >
54
-
55
- <div
56
- className={`${isOptionSelected ? 'selected' : 'not-selected'} uc v1 pv-v`}
57
- >
58
- <FormLabel name={name}>
59
- <input {...field} id={name} className="input" type="radio" value={value} />
60
- <span className="text">
61
- {children}
62
- </span>
63
- </FormLabel>
64
- </div>
65
- {meta.error && meta.touched && <FormDescription error>{meta.error}</FormDescription>}
66
- </div>
67
- )
68
- }
69
-
70
- RadioInput.propTypes = {
71
- /**
72
- * The HTML id for this element
73
- */
74
- id:PropTypes.string,
75
-
76
- /**
77
- * The HTML class names for this element
78
- */
79
- className:PropTypes.string,
80
-
81
- /**
82
- * The React-written, css properties for this element.
83
- */
84
- style:PropTypes.objectOf(PropTypes.string),
85
-
86
- /**
87
- * The children JSX
88
- */
89
- children:PropTypes.node,
90
-
91
- /**
92
- * The name of the radio input
93
- */
94
- name:PropTypes.string,
95
-
96
- /**
97
- * The value of the radio input
98
- */
99
- value:PropTypes.string,
100
-
101
- /**
102
- * The label of the radio input
103
- */
104
- label:PropTypes.string,
105
-
106
- }
107
-
108
- RadioInput.defaultProps = {
109
- // someProp:false
110
- }
111
-
112
- export default memo(RadioInput)
@@ -1,2 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- export { default as RadioInput } from './RadioInput'
@@ -1,26 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
-
3
- @use "@pareto-engineering/bem";
4
- @use "../../../form.scss";
5
-
6
-
7
- .#{bem.$base}.radio-input {
8
- .input {
9
- @include form.radio-checkbox-input;
10
- }
11
-
12
- .not-selected {
13
- @include form.radio-checkbox-input-not-selected;
14
- }
15
-
16
-
17
- .selected {
18
- @include form.radio-checkbox-input-selected;
19
- }
20
-
21
- .text {
22
- color: inherit;
23
- }
24
- }
25
-
26
-
@@ -1,130 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- import * as React from 'react'
3
-
4
- import { useLayoutEffect, memo } from 'react'
5
-
6
- import PropTypes from 'prop-types'
7
-
8
- import { useField } from 'formik'
9
-
10
- import styleNames from '@pareto-engineering/bem'
11
-
12
- import { FormLabel } from '../../common'
13
-
14
- // Local Definitions
15
-
16
- const baseClassName = styleNames.base
17
-
18
- const componentClassName = 'task-recommendation-input'
19
-
20
- /**
21
- * This is the component description.
22
- */
23
- const TaskRecommendationInput = ({
24
- id,
25
- className:userClassName,
26
- style,
27
- name,
28
- value,
29
- oneLiner,
30
- label,
31
- color,
32
- image,
33
- // ...otherProps
34
- }) => {
35
- useLayoutEffect(() => {
36
- import('./styles.scss')
37
- }, [])
38
-
39
- const [field] = useField(name)
40
-
41
- const isOptionSelected = !!(field.value?.length > 0 && field.value.includes(value))
42
-
43
- return (
44
- <div
45
- id={id}
46
- className={[
47
- baseClassName,
48
- componentClassName,
49
- userClassName,
50
- `x-${color}`,
51
- ]
52
- .filter((e) => e)
53
- .join(' ')}
54
- style={style}
55
- // {...otherProps}
56
- >
57
- <div className={`task-content ${isOptionSelected ? 'b-x' : 'b-on-x'}`}>
58
- <div className="v1 p-v task">
59
- <FormLabel
60
- className={`uc mb-v ${isOptionSelected ? styleNames.modifierActive : ''}`}
61
- name={name}
62
- >
63
- {label}
64
- </FormLabel>
65
- <input {...field} value={value} id={name} className="input" type="checkbox" />
66
- <img className="image" src={image} alt="img" />
67
- <p
68
- className={[
69
- 'uc u2 mt-u',
70
- isOptionSelected && 'c-on-x',
71
- ]
72
- .filter((e) => e)
73
- .join(' ')}
74
- >
75
- {oneLiner}
76
- </p>
77
- </div>
78
- </div>
79
- </div>
80
- )
81
- }
82
-
83
- TaskRecommendationInput.propTypes = {
84
- /**
85
- * The HTML id for this element
86
- */
87
- id:PropTypes.string,
88
-
89
- /**
90
- * The HTML class names for this element
91
- */
92
- className:PropTypes.string,
93
-
94
- /**
95
- * The React-written, css properties for this element.
96
- */
97
- style:PropTypes.objectOf(PropTypes.string),
98
-
99
- /**
100
- * The name of the input
101
- */
102
- name:PropTypes.string.isRequired,
103
-
104
- /**
105
- * The value of the input
106
- */
107
- value :PropTypes.string.isRequired,
108
- /**
109
- * The task one liner description
110
- */
111
- oneLiner:PropTypes.string.isRequired,
112
- /**
113
- * The task label
114
- */
115
- label :PropTypes.string.isRequired,
116
- /**
117
- * The color
118
- */
119
- color :PropTypes.string,
120
- /**
121
- * Task image
122
- */
123
- image :PropTypes.string.isRequired,
124
- }
125
-
126
- TaskRecommendationInput.defaultProps = {
127
- color:'main2',
128
- }
129
-
130
- export default memo(TaskRecommendationInput)
@@ -1,2 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- export { default as TaskRecommendationInput } from './TaskRecommendationInput'
@@ -1,41 +0,0 @@
1
- /* @pareto-engineering/generator-front 1.0.12 */
2
- @use "@pareto-engineering/bem";
3
-
4
- .#{bem.$base}.task-recommendation-input {
5
-
6
- .task-content {
7
- border-radius: var(--theme-border-radius);
8
- border: 1px solid var(--x);
9
- height: 100%;
10
-
11
- .task {
12
- position: relative;
13
- display: flex;
14
- flex-direction: column;
15
- justify-content: space-around;
16
- align-items: center;
17
- height: 100%;
18
-
19
- .#{bem.$modifier-active} {
20
- color: var(--on-x);
21
- }
22
-
23
- .input {
24
- appearance: none;
25
- position: absolute;
26
- left: 0;
27
- top: 0;
28
- bottom:0;
29
- cursor: pointer;
30
- width: 100%;
31
- }
32
-
33
- .image {
34
- width: 7rem;
35
- }
36
- }
37
- }
38
- }
39
-
40
-
41
-