@uxda/appkit 4.2.92 → 4.2.94
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/dist/appkit.css +2 -2
- package/dist/index.js +1085 -24
- package/package.json +2 -1
- package/src/balance/components/AccountView.vue +1 -1
- package/src/payment/components/RechargeView.vue +2 -1
- package/src/payment/types.ts +1 -0
- package/src/shared/index.ts +1 -0
- package/src/shared/tracking/README.md +509 -0
- package/src/shared/tracking/directives/index.ts +40 -0
- package/src/shared/tracking/directives/track-click.ts +142 -0
- package/src/shared/tracking/directives/track-page.ts +50 -0
- package/src/shared/tracking/directives/track-scroll.ts +116 -0
- package/src/shared/tracking/directives/track-search.ts +179 -0
- package/src/shared/tracking/examples/data-structure-example.ts +239 -0
- package/src/shared/tracking/examples/directive-tracking-example.vue +202 -0
- package/src/shared/tracking/examples/global-tracking-example.vue +25 -0
- package/src/shared/tracking/examples/page-tracking-template.vue +27 -0
- package/src/shared/tracking/examples/sdk-tracking-example.vue +33 -0
- package/src/shared/tracking/index.ts +5 -0
- package/src/shared/tracking/tracking-init.ts +214 -0
- package/src/shared/tracking/tracking-sdk.ts +986 -0
- package/src/shared/tracking/useAutoTracking.ts +108 -0
- package/src/user/components/UserBinding.vue +2 -2
package/dist/appkit.css
CHANGED
|
@@ -2178,12 +2178,12 @@ page {
|
|
|
2178
2178
|
--nut-cell-padding: 0;
|
|
2179
2179
|
}
|
|
2180
2180
|
.user-binding-img {
|
|
2181
|
-
width:
|
|
2181
|
+
width: 100%;
|
|
2182
2182
|
height: 192px;
|
|
2183
2183
|
}
|
|
2184
2184
|
.user-binding-layout {
|
|
2185
2185
|
position: relative;
|
|
2186
|
-
width:
|
|
2186
|
+
width: 100%;
|
|
2187
2187
|
border-radius: 4px;
|
|
2188
2188
|
background: #fff;
|
|
2189
2189
|
overflow: hidden;
|