@idealyst/navigation 1.2.98 → 1.2.100
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idealyst/navigation",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.100",
|
|
4
4
|
"description": "Cross-platform navigation library for React and React Native",
|
|
5
5
|
"readme": "README.md",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@idealyst/camera": "^1.2.30",
|
|
48
|
-
"@idealyst/components": "^1.2.
|
|
48
|
+
"@idealyst/components": "^1.2.100",
|
|
49
49
|
"@idealyst/microphone": "^1.2.30",
|
|
50
|
-
"@idealyst/theme": "^1.2.
|
|
50
|
+
"@idealyst/theme": "^1.2.100",
|
|
51
51
|
"@react-navigation/bottom-tabs": ">=7.0.0",
|
|
52
52
|
"@react-navigation/drawer": ">=7.0.0",
|
|
53
53
|
"@react-navigation/native": ">=7.0.0",
|
|
@@ -72,16 +72,15 @@
|
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@idealyst/animate": "^1.2.38",
|
|
75
|
-
"@idealyst/audio-playback": "^1.2.46",
|
|
76
75
|
"@idealyst/blur": "^1.2.40",
|
|
77
76
|
"@idealyst/camera": "^1.2.30",
|
|
78
|
-
"@idealyst/components": "^1.2.
|
|
77
|
+
"@idealyst/components": "^1.2.100",
|
|
79
78
|
"@idealyst/datagrid": "^1.2.30",
|
|
80
79
|
"@idealyst/datepicker": "^1.2.30",
|
|
81
80
|
"@idealyst/lottie": "^1.2.38",
|
|
82
|
-
"@idealyst/markdown": "^1.2.
|
|
81
|
+
"@idealyst/markdown": "^1.2.100",
|
|
83
82
|
"@idealyst/microphone": "^1.2.30",
|
|
84
|
-
"@idealyst/theme": "^1.2.
|
|
83
|
+
"@idealyst/theme": "^1.2.100",
|
|
85
84
|
"@types/react": "^19.1.8",
|
|
86
85
|
"@types/react-dom": "^19.1.6",
|
|
87
86
|
"react": "^19.1.0",
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ActivityIndicatorExamples, AvatarExamples, BadgeExamples, ButtonExamples, CardExamples, CheckboxExamples, DialogExamples, DividerExamples, IconExamples, InputExamples, LinkExamples, PopoverExamples, ScreenExamples, SelectExamples, SliderExamples, SVGImageExamples, TextExamples, ViewExamples, ThemeExtensionExamples, SwitchExamples, RadioButtonExamples, ProgressExamples, TextAreaExamples, TabBarExamples, TooltipExamples, AccordionExamples, ListExamples, TableExamples, MenuExamples, ImageExamples, VideoExamples, AlertExamples, SkeletonExamples, ChipExamples, BreadcrumbExamples } from '@idealyst/components/examples';
|
|
2
|
+
import { ActivityIndicatorExamples, AvatarExamples, BadgeExamples, ButtonExamples, CardExamples, CheckboxExamples, DialogExamples, DividerExamples, IconExamples, InputExamples, LinkExamples, PopoverExamples, ScreenExamples, SelectExamples, SliderExamples, SVGImageExamples, TextExamples, ViewExamples, ThemeExtensionExamples, SwitchExamples, RadioButtonExamples, ProgressExamples, TextAreaExamples, TabBarExamples, TooltipExamples, AccordionExamples, ListExamples, TableExamples, MenuExamples, ImageExamples, VideoExamples, AlertExamples, SkeletonExamples, ChipExamples, BreadcrumbExamples, GridExamples } from '@idealyst/components/examples';
|
|
3
3
|
import { DataGridShowcase } from '@idealyst/datagrid/examples';
|
|
4
4
|
import { DatePickerExamples } from '@idealyst/datepicker/examples';
|
|
5
5
|
import { CameraExamples } from '@idealyst/camera/examples';
|
|
6
6
|
import { MicrophoneExamples } from '@idealyst/microphone/examples';
|
|
7
|
-
import { AudioPlaybackPage } from '@test-select-demo/shared/pages/packages/AudioPlayback';
|
|
8
7
|
import { AnimateExamples } from '@idealyst/animate/examples';
|
|
9
8
|
import { LottieExamples } from '@idealyst/lottie/examples';
|
|
10
9
|
import { BlurViewExamples } from '@idealyst/blur/examples';
|
|
@@ -339,13 +338,13 @@ const ExampleNavigationRouter: NavigatorParam = {
|
|
|
339
338
|
{ path: "video", type: 'screen', component: VideoExamples, options: { title: "Video" } },
|
|
340
339
|
{ path: "camera", type: 'screen', component: CameraExamples, options: { title: "Camera" } },
|
|
341
340
|
{ path: "microphone", type: 'screen', component: MicrophoneExamples, options: { title: "Microphone" } },
|
|
342
|
-
{ path: "audio-playback", type: 'screen', component: AudioPlaybackPage, options: { title: "Audio Playback" } },
|
|
343
341
|
{ path: "datagrid", type: 'screen', component: DataGridShowcase, options: { title: "Data Grid" } },
|
|
344
342
|
{ path: "datepicker", type: 'screen', component: DatePickerExamples, options: { title: "Date Picker" } },
|
|
345
343
|
{ path: "animate", type: 'screen', component: AnimateExamples, options: { title: "Animate" } },
|
|
346
344
|
{ path: "lottie", type: 'screen', component: LottieExamples, options: { title: "Lottie" } },
|
|
347
345
|
{ path: "blur", type: 'screen', component: BlurViewExamples, options: { title: "Blur" } },
|
|
348
346
|
{ path: "markdown-editor", type: 'screen', component: MarkdownEditorExamples, options: { title: "Markdown Editor" } },
|
|
347
|
+
{ path: "grid", type: 'screen', component: GridExamples, options: { title: "Grid" } },
|
|
349
348
|
{ path: "theme-extension", type: 'screen', component: ThemeExtensionExamples, options: { title: "Theme Extension" } },
|
|
350
349
|
],
|
|
351
350
|
};
|