@hulkapps/app-manager-vue 3.1.2 → 3.1.4

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/README.md CHANGED
@@ -40,9 +40,9 @@ Here is a basic explanation of all the props for the `<AppManagerPlan>` componen
40
40
  | host | String | null | Shopify host parameter, used for embedded app context. |
41
41
  | discount_code | String | null | Discount code to apply to plans, if available. |
42
42
  | is_customizable| Boolean | false | Allows the user to customize their plan if set to true. |
43
- | full_width | Boolean | false | If true, stretches the component to the full width of its container. |
44
- | narrow_width | Boolean | false | If true, uses a narrower, more compact width. |
43
+ | width | String | 'base' | Controls the layout width of the component. Accepted values: 'tight' (max-width: 840px), 'base' (max-width: 1190px, default), 'loose' (max-width: 1600px). |
45
44
  | translations | Object | { hulkapps: 'hulkapps' } | Object for customizing translation strings. |
45
+ | enable_feature_tooltip | Boolean | false | If true, shows the feature description as a tooltip for plan features (tap to show/hide on mobile). Tooltip is only shown if the feature has a description. |
46
46
 
47
47
  You can use these props to control the appearance, context, and behavior of the `<AppManagerPlan>` component to fit your app's needs.
48
48
 
@@ -101,10 +101,22 @@ handleBannerClose(payload) {
101
101
  You can extract all translation keys used in this package by running:
102
102
 
103
103
  ```bash
104
- npm run extract-translation-keys
104
+ cd node_modules/@hulkapps/app-manager-vue
105
+ ```
106
+ ```bash
107
+ node extract-translation-keys.js
108
+ ```
109
+
110
+ If your package is located elsewhere, replace the path with the actual location, for example:
111
+
112
+ ```bash
113
+ cd path-to-package
114
+ ```
115
+ ```bash
116
+ node extract-translation-keys.js
105
117
  ```
106
118
 
107
- This command will scan all `.js` and `.vue` files within the `src` directory of this package for usages of `translateMe('...')` and output a JSON array of unique translation keys to the console. It will not scan the entire project or any consuming app—only the package's own source code.
119
+ This will scan all `.js` and `.vue` files within the `src` directory of this package for usages of `translateMe('...')` and output a JSON array of unique translation keys to the console.
108
120
 
109
121
  ## License
110
122