@mtngtools/frame-vue 0.0.20-experimental.0 → 0.0.23-experimental.0
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 +3 -2
- package/dist/{LoggedInOut-C-bqxxIj.js → VanillaIf-CJLX8GhG.js} +230 -160
- package/dist/components/LoggedInOut/LoggedInOut.vue.d.ts +6 -0
- package/dist/components/LoggedInOut/LoggedInOut.vue.d.ts.map +1 -1
- package/dist/components/VanillaIf/VanillaIf.vue.d.ts +23 -0
- package/dist/components/VanillaIf/VanillaIf.vue.d.ts.map +1 -0
- package/dist/components/VanillaIf/index.d.ts +2 -0
- package/dist/components/VanillaIf/index.d.ts.map +1 -0
- package/dist/components/VanillaIf/index.test.d.ts +2 -0
- package/dist/components/VanillaIf/index.test.d.ts.map +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/live/LiveFrame/LiveFrame.vue.d.ts +7 -3
- package/dist/components/live/LiveFrame/LiveFrame.vue.d.ts.map +1 -1
- package/dist/components/live/LiveFrame/helpers.test.d.ts +78 -54
- package/dist/components/live/LiveFrame/helpers.test.d.ts.map +1 -1
- package/dist/components.js +3 -3
- package/dist/composables/useSimpleLoggedIn/useSimpleLoggedIn.d.ts +14 -1
- package/dist/composables/useSimpleLoggedIn/useSimpleLoggedIn.d.ts.map +1 -1
- package/dist/composables.js +2 -2
- package/dist/frame-vue.css +1 -1
- package/dist/index.js +3 -3
- package/dist/useSimpleLoggedIn-DT4aMAWu.js +50 -0
- package/package.json +1 -1
- package/dist/useSimpleLoggedIn-Dy7e3LcN.js +0 -17
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@ Vue.js component and composable library for mtngTOOLS. Built for use in Nuxt app
|
|
|
11
11
|
| --- | --- |
|
|
12
12
|
| [`LiveFrame`](./src/components/live/LiveFrame) | Full-screen wrapper for live video players with responsive layout support. |
|
|
13
13
|
| [`LoggedInOut`](./src/components/LoggedInOut) | Component that toggles content visibility based on authentication status. |
|
|
14
|
+
| [`VanillaIf`](./src/components/VanillaIf) | A `v-if` wrapper that naturally delays rendering until synchronously or asynchronously evaluating its condition. |
|
|
14
15
|
| [`SidePanelFrame`](./src/components/live/SidePanelFrame) | Wrapper for controlling and displaying side panel content. |
|
|
15
16
|
| [`SidePanelHeader`](./src/components/live/SidePanelHeader) | Standardized header component for the side panel. |
|
|
16
17
|
| [`SidePanelButtonGroup`](./src/components/live/SidePanelButtonGroup) | Control group for managing panel selection buttons. |
|
|
@@ -33,7 +34,7 @@ pnpm add @mtngtools/frame-vue vue
|
|
|
33
34
|
### Regular Imports
|
|
34
35
|
|
|
35
36
|
```ts
|
|
36
|
-
import { LiveFrame, LoggedInOut } from '@mtngtools/frame-vue';
|
|
37
|
+
import { LiveFrame, LoggedInOut, VanillaIf } from '@mtngtools/frame-vue';
|
|
37
38
|
```
|
|
38
39
|
|
|
39
40
|
### Direct Subpath Imports
|
|
@@ -41,7 +42,7 @@ import { LiveFrame, LoggedInOut } from '@mtngtools/frame-vue';
|
|
|
41
42
|
For specific needs or smaller bundle sizes, you can import directly from subpaths:
|
|
42
43
|
|
|
43
44
|
```ts
|
|
44
|
-
import { LoggedInOut } from '@mtngtools/frame-vue/components';
|
|
45
|
+
import { LoggedInOut, VanillaIf } from '@mtngtools/frame-vue/components';
|
|
45
46
|
import { useSimpleLoggedIn } from '@mtngtools/frame-vue/composables';
|
|
46
47
|
```
|
|
47
48
|
|