@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 +16 -4
- package/dist/app-manager-vue.esm.js +1387 -1220
- package/dist/app-manager-vue.min.js +3 -3
- package/dist/app-manager-vue.ssr.js +1406 -1252
- package/dist/hulkapps-app-manager.css +1 -1
- package/dist/hulkapps-app-manager.min.css +1 -1
- package/package.json +2 -3
- package/src/components/Plans/AppManagerGroupPlan.vue +4 -4
- package/src/components/Plans/AppManagerPlan.vue +7 -6
- package/src/components/Plans/AppManagerSliderPlan.vue +34 -29
- package/src/components/PolarisNew/AppCard.vue +2 -2
- package/src/components/PolarisNew/BenefitsBanner.vue +19 -19
- package/src/components/PolarisNew/BundlePlanCard.vue +6 -6
- package/src/components/PolarisNew/CategoryHeading.vue +2 -2
- package/src/components/PolarisNew/CustomTooltip.vue +116 -0
- package/src/components/PolarisNew/CustomizationModal.vue +3 -3
- package/src/components/PolarisNew/GetCustomBlock.vue +15 -15
- package/src/components/PolarisNew/PlanCardsHighlights.vue +20 -17
- package/src/components/PolarisNew/PlanShowcaseBanner.vue +19 -22
- package/src/components/PolarisNew/PlanTable.vue +82 -33
- package/src/components/PolarisNew/SelectButton.vue +3 -3
- package/src/components/PolarisNew/ToggleButton.vue +3 -3
- package/src/components/PolarisNew/VariantButton.vue +4 -3
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
|
-
|
|
|
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
|
-
|
|
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
|
|
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
|
|