@schukai/monster 4.65.0 → 4.66.1
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 +20 -0
- package/package.json +1 -1
- package/source/components/form/buy-box.mjs +4 -0
- package/source/components/form/register-wizard.mjs +3302 -0
- package/source/components/form/style/register-wizard.pcss +111 -0
- package/source/components/form/stylesheet/register-wizard.mjs +38 -0
- package/source/components/form/variant-select.mjs +10 -0
- package/source/dom/customcontrol.mjs +2 -0
- package/source/dom/customelement.mjs +2 -0
- package/source/dom/updater.mjs +2 -0
- package/source/i18n/formatter.mjs +2 -0
- package/source/i18n/locale.mjs +2 -0
- package/source/i18n/translations.mjs +2 -0
- package/source/text/formatter.mjs +2 -0
- package/source/types/version.mjs +1 -1
- package/test/cases/monster.mjs +1 -1
- package/test/web/import.js +2 -0
- package/test/web/test.html +2 -2
- package/test/web/tests.js +7327 -2724
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
## [4.66.1] - 2025-12-31
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- webtests
|
|
10
|
+
- update examples
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [4.66.0] - 2025-12-31
|
|
15
|
+
|
|
16
|
+
### Add Features
|
|
17
|
+
|
|
18
|
+
- Add new registration wizard component [#353](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/353)
|
|
19
|
+
### Changes
|
|
20
|
+
|
|
21
|
+
- Add documentation examples to variant-select component
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
5
25
|
## [4.65.0] - 2025-12-30
|
|
6
26
|
|
|
7
27
|
### Add Features
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"author":"Volker Schukai","dependencies":{"@floating-ui/dom":"^1.7.4","@popperjs/core":"^2.11.8"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"4.
|
|
1
|
+
{"author":"Volker Schukai","dependencies":{"@floating-ui/dom":"^1.7.4","@popperjs/core":"^2.11.8"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"4.66.1"}
|
|
@@ -185,6 +185,10 @@ const pricingCacheSymbol = Symbol("pricingCache");
|
|
|
185
185
|
/**
|
|
186
186
|
* BuyBox
|
|
187
187
|
*
|
|
188
|
+
* @fragments /fragments/components/form/buy-box/
|
|
189
|
+
*
|
|
190
|
+
* @example /examples/components/form/buy-box-basic Basic buy box
|
|
191
|
+
*
|
|
188
192
|
* @summary Product buy box control with variants, quantity, pricing, and add-to-cart.
|
|
189
193
|
* @fires monster-buy-box-change
|
|
190
194
|
* @fires monster-buy-box-valid
|