decathlon-ui 0.3.0 → 0.3.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.
Files changed (41) hide show
  1. package/dist/components/button/button.props.d.ts +5 -2
  2. package/dist/components/button/button.props.d.ts.map +1 -1
  3. package/dist/components/button/button.props.js +3 -0
  4. package/dist/components/button/button.styles.d.ts +423 -9
  5. package/dist/components/button/button.styles.d.ts.map +1 -1
  6. package/dist/components/button/button.styles.js +77 -25
  7. package/dist/components/index.d.ts +2 -0
  8. package/dist/components/index.d.ts.map +1 -1
  9. package/dist/components/index.js +2 -0
  10. package/dist/components/information-card/index.d.ts +3 -0
  11. package/dist/components/information-card/index.d.ts.map +1 -0
  12. package/dist/components/information-card/index.js +1 -0
  13. package/dist/components/information-card/information-card.component.d.ts +4 -0
  14. package/dist/components/information-card/information-card.component.d.ts.map +1 -0
  15. package/dist/components/information-card/information-card.component.js +45 -0
  16. package/dist/components/information-card/information-card.styles.d.ts +30 -0
  17. package/dist/components/information-card/information-card.styles.d.ts.map +1 -0
  18. package/dist/components/information-card/information-card.styles.js +37 -0
  19. package/dist/components/information-card/information-card.types.d.ts +32 -0
  20. package/dist/components/information-card/information-card.types.d.ts.map +1 -0
  21. package/dist/components/information-card/information-card.types.js +1 -0
  22. package/dist/components/input/error-message/error-message.d.ts.map +1 -1
  23. package/dist/components/input/error-message/error-message.js +29 -26
  24. package/dist/components/input/input.component.d.ts +2 -1
  25. package/dist/components/input/input.component.d.ts.map +1 -1
  26. package/dist/components/input/input.component.js +2 -3
  27. package/dist/components/input/input.styles.d.ts +15 -14
  28. package/dist/components/input/input.styles.d.ts.map +1 -1
  29. package/dist/components/input/input.styles.js +16 -15
  30. package/dist/components/product-card/product-card.component.js +1 -1
  31. package/dist/components/select/select.component.d.ts.map +1 -1
  32. package/dist/components/select/select.component.js +1 -3
  33. package/dist/components/select/select.styles.d.ts +19 -18
  34. package/dist/components/select/select.styles.d.ts.map +1 -1
  35. package/dist/components/select/select.styles.js +20 -19
  36. package/dist/themes/index.d.ts +1 -0
  37. package/dist/themes/index.d.ts.map +1 -1
  38. package/dist/themes/light.d.ts +1 -0
  39. package/dist/themes/light.d.ts.map +1 -1
  40. package/dist/themes/light.js +1 -0
  41. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/themes/index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,QAAQ,CAAC;AAC1B,OAAO,KAAK,MAAM,SAAS,CAAC;AAE5B,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEb,CAAC;AAEF,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/themes/index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,QAAQ,CAAC;AAC1B,OAAO,KAAK,MAAM,SAAS,CAAC;AAE5B,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEb,CAAC;AAEF,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC"}
@@ -128,6 +128,7 @@ declare const light: {
128
128
  readonly default: 14;
129
129
  readonly md: 16;
130
130
  readonly mmd: 21;
131
+ readonly mmd2: 20;
131
132
  readonly lg: 24;
132
133
  readonly xl: 32;
133
134
  readonly xxl: 48;
@@ -1 +1 @@
1
- {"version":3,"file":"light.d.ts","sourceRoot":"","sources":["../../src/themes/light.ts"],"names":[],"mappings":"AAaA,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuMD,CAAC;AAEX,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"light.d.ts","sourceRoot":"","sources":["../../src/themes/light.ts"],"names":[],"mappings":"AAaA,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwMD,CAAC;AAEX,eAAe,KAAK,CAAC"}
@@ -91,6 +91,7 @@ const light = {
91
91
  default: 14,
92
92
  md: 16,
93
93
  mmd: 21,
94
+ mmd2: 20,
94
95
  lg: 24,
95
96
  xl: 32,
96
97
  xxl: 48,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "decathlon-ui",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Biblioteca de componentes React Native com Storybook e documentação via GitHub Pages.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",