@dataloop-ai/components 0.18.66 → 0.18.67

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": "@dataloop-ai/components",
3
- "version": "0.18.66",
3
+ "version": "0.18.67",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -130,7 +130,7 @@ export default defineComponent({
130
130
  * The size of the button, it can be s,m,l or xl
131
131
  */
132
132
  margin: { type: String, default: '0 auto' },
133
- size: { type: String! as PropType<ButtonSizes | string>, default: 'm' },
133
+ size: { type: String! as PropType<ButtonSizes>, default: 'm' },
134
134
  /**
135
135
  * The assigned color will fill the entirety of the button
136
136
  */
@@ -1,7 +1,7 @@
1
1
  import { getColor } from '../../../utils'
2
2
  import { getLighterGradient } from '../../../utils/getLighterGradient'
3
3
 
4
- export type ButtonSizes = 's' | 'm' | 'l' | 'xl'
4
+ export type ButtonSizes = 's' | 'm' | 'l' | ('xl' & string)
5
5
 
6
6
  const paddings = {
7
7
  s: '7px 16px',