@pareto-engineering/design-system 2.0.0-alpha.54 → 2.0.0-alpha.55

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.
@@ -105,7 +105,7 @@ FormInput.propTypes = {
105
105
  /**
106
106
  * The HTML class names for this element
107
107
  */
108
- type: _propTypes.default.oneOf(['text', 'email', 'password', 'number', 'date', 'datetime', 'month', 'tel', 'hidden', 'select', 'choices', 'textarea', 'query-combobox', // to be removed
108
+ type: _propTypes.default.oneOf(['text', 'email', 'password', 'number', 'date', 'datetime', 'month', 'tel', 'hidden', 'select', 'choices', 'textarea', 'query-combobox', 'url', // to be removed
109
109
  'extendedTypeInput']),
110
110
 
111
111
  /**
@@ -83,7 +83,7 @@ FormInput.propTypes = {
83
83
  /**
84
84
  * The HTML class names for this element
85
85
  */
86
- type: PropTypes.oneOf(['text', 'email', 'password', 'number', 'date', 'datetime', 'month', 'tel', 'hidden', 'select', 'choices', 'textarea', 'query-combobox', // to be removed
86
+ type: PropTypes.oneOf(['text', 'email', 'password', 'number', 'date', 'datetime', 'month', 'tel', 'hidden', 'select', 'choices', 'textarea', 'query-combobox', 'url', // to be removed
87
87
  'extendedTypeInput']),
88
88
 
89
89
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pareto-engineering/design-system",
3
- "version": "2.0.0-alpha.54",
3
+ "version": "2.0.0-alpha.55",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/es/index.js",
@@ -127,6 +127,7 @@ FormInput.propTypes = {
127
127
  'choices',
128
128
  'textarea',
129
129
  'query-combobox',
130
+ 'url',
130
131
  // to be removed
131
132
  'extendedTypeInput',
132
133
  ]),