hr-design-system-handlebars 0.51.1 → 0.51.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.
- package/.storybook/main.js +1 -4
- package/CHANGELOG.md +12 -0
- package/dist/assets/js/views/{components/generic → generic}/hrQuery.subfeature.js +0 -0
- package/dist/views/{components/generic → generic}/hrQuery.subfeature.js +0 -0
- package/package.json +1 -1
- /package/src/stories/views/{components/generic → generic}/hrQuery.subfeature.js +0 -0
package/.storybook/main.js
CHANGED
|
@@ -36,10 +36,7 @@ module.exports = {
|
|
|
36
36
|
components: path.resolve(__dirname, '../src/stories/views/components'),
|
|
37
37
|
base: path.resolve(__dirname, '../src/stories/views/base'),
|
|
38
38
|
tailwind$: path.resolve(__dirname, '../src/assets/tailwind.css'),
|
|
39
|
-
hrQuery$: path.resolve(
|
|
40
|
-
__dirname,
|
|
41
|
-
'../src/stories/views/components/generic/hrQuery.subfeature.js'
|
|
42
|
-
),
|
|
39
|
+
hrQuery$: path.resolve(__dirname, '../src/stories/views/generic/hrQuery.subfeature.js'),
|
|
43
40
|
initializer$: path.resolve(
|
|
44
41
|
__dirname,
|
|
45
42
|
'../build/webpack/feature-loader/initializer/initializer.js'
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.51.2 (Thu Jul 28 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- FEATURE: hrQuery is moved out of the components [#289](https://github.com/mumprod/hr-design-system-handlebars/pull/289) ([@szuelch](https://github.com/szuelch))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@szuelch](https://github.com/szuelch)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.51.1 (Thu Jul 28 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"repository": "https://github.com/szuelch/hr-design-system-handlebars",
|
|
9
|
-
"version": "0.51.
|
|
9
|
+
"version": "0.51.2",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
File without changes
|