agroptima-design-system 0.32.0-beta.0 → 0.32.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agroptima-design-system",
3
- "version": "0.32.0-beta.0",
3
+ "version": "0.32.0",
4
4
  "scripts": {
5
5
  "dev": "npm run storybook",
6
6
  "storybook": "storybook dev -p 6006 --ci",
@@ -2,4 +2,4 @@ import { HelpText } from './HelpText'
2
2
 
3
3
  export type { HelpTextProps } from './HelpText'
4
4
 
5
- export { HelpText }
5
+ export { HelpText }
@@ -31,6 +31,7 @@ export function SelectTrigger({
31
31
  <div className="select-container">
32
32
  <button
33
33
  id={id}
34
+ type="button"
34
35
  role="combobox"
35
36
  className="select"
36
37
  tabIndex={0}
@@ -7,9 +7,9 @@ import { Meta } from "@storybook/blocks";
7
7
  ## 0.32.0
8
8
 
9
9
  * Make more accessible Select component.
10
- * Unify Select and MultiSelect elements.
11
- * Create Label component and use in components.
12
- * Create HelpText component and use in components.
10
+ * Unify Select and MultiSelect components.
11
+ * Create Label component and use it in components.
12
+ * Create HelpText component and use it in components.
13
13
  * Create RadioGroup component.
14
14
 
15
15
  ## 0.31.18
@@ -30,10 +30,10 @@ const meta = {
30
30
  description: 'Optional parameter for custom name input',
31
31
  },
32
32
  required: {
33
- description: 'Optional parameter for required pick date',
33
+ description: 'Optional parameter to require selecting a date',
34
34
  },
35
35
  className: {
36
- description: 'Optional parameter for add styles by className',
36
+ description: 'Optional parameter to add styles by className',
37
37
  },
38
38
  withInput: {
39
39
  description: 'Optional input to read and select the date',
package/tests/library.ts CHANGED
@@ -10,4 +10,4 @@ export * as Label from '../src/stories/Label.stories'
10
10
  export * as Modal from '../src/stories/Modal.stories'
11
11
  export * as Multiselect from '../src/stories/Multiselect.stories'
12
12
  export * as RadioGroup from '../src/stories/RadioGroup.stories'
13
- export * as Select from '../src/stories/Select.stories'
13
+ export * as Select from '../src/stories/Select.stories'