@jobber/generators 0.8.1 → 0.8.2-fix-hide-h.73

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 CHANGED
@@ -3,6 +3,25 @@
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
+ # [0.9.0](https://github.com/GetJobber/atlantis/compare/@jobber/generators@0.8.2...@jobber/generators@0.9.0) (2024-02-05)
7
+
8
+
9
+ ### Features
10
+
11
+ * **generators:** Modifying css naming pattern in component generator to follow css modules convention [JOB-87530] ([#1751](https://github.com/GetJobber/atlantis/issues/1751)) ([8885605](https://github.com/GetJobber/atlantis/commit/8885605f2b5ffadff1e0accfea684782047f6400))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.8.2](https://github.com/GetJobber/atlantis/compare/@jobber/generators@0.8.1...@jobber/generators@0.8.2) (2023-12-01)
18
+
19
+ **Note:** Version bump only for package @jobber/generators
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.8.1](https://github.com/GetJobber/atlantis/compare/@jobber/generators@0.8.0...@jobber/generators@0.8.1) (2023-10-31)
7
26
 
8
27
  **Note:** Version bump only for package @jobber/generators
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@jobber/generators",
3
- "version": "0.8.1",
3
+ "version": "0.8.2-fix-hide-h.73+6cd98b2a",
4
4
  "license": "MIT",
5
5
  "main": "index.js",
6
6
  "scripts": {},
7
7
  "dependencies": {
8
8
  "inquirer-path": "^1.0.0-beta5"
9
9
  },
10
- "gitHead": "d8214fde2dedb50cebe48fe7967019660a1933bd"
10
+ "gitHead": "6cd98b2ae36e2810bdec97e994735ad322e19c1f"
11
11
  }
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import classnames from "classnames";
3
- import styles from "./{{name}}.css";
3
+ import styles from "./{{name}}.module.css";
4
4
 
5
5
  interface {{name}}Props {
6
6
  /**
@@ -24,7 +24,7 @@ The {{name}} will... _Add a brief description of the design and usage of the com
24
24
  What type of content does this component present (documents, text, images, other components)?
25
25
  What is the recommended, or expected, amount of content? What is the components’ behaviour when
26
26
  the provided content diverges from what is expected (image aspect ratio, amount of text, video
27
- vs audio, filesize)? Are there any important references to the [Product Vocabulary](https://atlantis.getjobber.com/guides/product-vocabulary)
27
+ vs audio, filesize)? Are there any important references to the [Product Vocabulary](https://atlantis.getjobber.com/?path=/docs/content-product-vocabulary--page)
28
28
  that should be made regarding this component? What happens when content is unavailable or unreliable
29
29
  (poor connection, empty states, flaky GPS data?)
30
30
  -->