@ecomplus/widget-product 1.0.0-beta.113 → 1.0.0-beta.116
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/CHANGELOG.md +30 -0
- package/cms.config.js +38 -0
- package/dist/public/widget-product.var.min.js +1 -1
- package/dist/public/widget-product.var.min.js.map +1 -1
- package/dist/widget-product.min.js +1 -1
- package/dist/widget-product.min.js.map +1 -1
- package/package.json +2 -2
- package/src/index.js +12 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-beta.116](https://github.com/ecomplus/storefront/compare/@ecomplus/widget-product@1.0.0-beta.115...@ecomplus/widget-product@1.0.0-beta.116) (2022-04-21)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ecomplus/widget-product
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.0.0-beta.115](https://github.com/ecomplus/storefront/compare/@ecomplus/widget-product@1.0.0-beta.114...@ecomplus/widget-product@1.0.0-beta.115) (2022-04-01)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **widget-product:** cms config to toggle promotion timer [[#554](https://github.com/ecomplus/storefront/issues/554)] ([1bc6b4a](https://github.com/ecomplus/storefront/commit/1bc6b4a659b0e5fa276a2c2a2a0de4141bb37a4f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [1.0.0-beta.114](https://github.com/ecomplus/storefront/compare/@ecomplus/widget-product@1.0.0-beta.113...@ecomplus/widget-product@1.0.0-beta.114) (2022-03-05)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **widget-product:** cms config to toggle quantity selector [[#592](https://github.com/ecomplus/storefront/issues/592)] ([46f4ad8](https://github.com/ecomplus/storefront/commit/46f4ad85fecb270c754cb4e45e190cf5bc29c380))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [1.0.0-beta.113](https://github.com/ecomplus/storefront/compare/@ecomplus/widget-product@1.0.0-beta.112...@ecomplus/widget-product@1.0.0-beta.113) (2022-02-16)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @ecomplus/widget-product
|
package/cms.config.js
CHANGED
|
@@ -43,6 +43,44 @@ export default () => ({
|
|
|
43
43
|
default_language: 'html',
|
|
44
44
|
output_code_only: true
|
|
45
45
|
},
|
|
46
|
+
{
|
|
47
|
+
label: 'Seletor de quantidade',
|
|
48
|
+
name: 'strHasQuantitySelector',
|
|
49
|
+
widget: 'select',
|
|
50
|
+
options: [
|
|
51
|
+
{
|
|
52
|
+
label: 'Padrão do tema',
|
|
53
|
+
value: '_'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
label: 'Apenas botão (adiciona 1 unidade)',
|
|
57
|
+
value: ' '
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
label: 'Input antes do botão',
|
|
61
|
+
value: 'true'
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
label: 'Temporizador de oferta',
|
|
67
|
+
name: 'strHasPromotionTimer',
|
|
68
|
+
widget: 'select',
|
|
69
|
+
options: [
|
|
70
|
+
{
|
|
71
|
+
label: 'Padrão do tema',
|
|
72
|
+
value: '_'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
label: 'Sem temporizador',
|
|
76
|
+
value: ' '
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
label: 'Temporizador em produtos com oferta e prazo',
|
|
80
|
+
value: 'true'
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
},
|
|
46
84
|
{
|
|
47
85
|
label: 'Alerta de quantidade',
|
|
48
86
|
name: 'lowQuantityToWarn',
|