@idealyst/navigation 1.3.10 → 1.3.11

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.3.10",
3
+ "version": "1.3.11",
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.3.10",
48
+ "@idealyst/components": "^1.3.11",
49
49
  "@idealyst/microphone": "^1.2.30",
50
- "@idealyst/theme": "^1.3.10",
50
+ "@idealyst/theme": "^1.3.11",
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",
@@ -74,13 +74,14 @@
74
74
  "@idealyst/animate": "^1.2.38",
75
75
  "@idealyst/blur": "^1.2.40",
76
76
  "@idealyst/camera": "^1.2.30",
77
- "@idealyst/components": "^1.3.10",
77
+ "@idealyst/charts": "^1.2.80",
78
+ "@idealyst/components": "^1.3.11",
78
79
  "@idealyst/datagrid": "^1.2.30",
79
80
  "@idealyst/datepicker": "^1.2.30",
80
81
  "@idealyst/lottie": "^1.2.38",
81
- "@idealyst/markdown": "^1.3.10",
82
+ "@idealyst/markdown": "^1.3.11",
82
83
  "@idealyst/microphone": "^1.2.30",
83
- "@idealyst/theme": "^1.3.10",
84
+ "@idealyst/theme": "^1.3.11",
84
85
  "@types/react": "^19.1.8",
85
86
  "@types/react-dom": "^19.1.6",
86
87
  "react": "^19.1.0",
@@ -7,6 +7,7 @@ import { MicrophoneExamples } from '@idealyst/microphone/examples';
7
7
  import { AnimateExamples } from '@idealyst/animate/examples';
8
8
  import { LottieExamples } from '@idealyst/lottie/examples';
9
9
  import { BlurViewExamples } from '@idealyst/blur/examples';
10
+ import { ChartsExamples } from '@idealyst/charts/examples';
10
11
  import { MarkdownEditorExamples } from '@idealyst/markdown/examples';
11
12
  import { Text, View, Card, Screen, Icon, Button } from '@idealyst/components';
12
13
  import { NavigatorParam, RouteParam, NotFoundComponentProps } from '../routing';
@@ -345,6 +346,7 @@ const ExampleNavigationRouter: NavigatorParam = {
345
346
  { path: "blur", type: 'screen', component: BlurViewExamples, options: { title: "Blur" } },
346
347
  { path: "markdown-editor", type: 'screen', component: MarkdownEditorExamples, options: { title: "Markdown Editor" } },
347
348
  { path: "grid", type: 'screen', component: GridExamples, options: { title: "Grid" } },
349
+ { path: "charts", type: 'screen', component: ChartsExamples, options: { title: "Charts" } },
348
350
  { path: "theme-extension", type: 'screen', component: ThemeExtensionExamples, options: { title: "Theme Extension" } },
349
351
  ],
350
352
  };
@@ -86,6 +86,7 @@ const componentGroups: ComponentGroup[] = [
86
86
  {
87
87
  title: 'Data',
88
88
  items: [
89
+ { label: 'Charts', path: '/charts', icon: 'chart-line' },
89
90
  { label: 'DataGrid', path: '/datagrid', icon: 'grid' },
90
91
  { label: 'DatePicker', path: '/datepicker', icon: 'calendar-today' },
91
92
  { label: 'Table', path: '/table', icon: 'table' },
@@ -99,7 +99,7 @@ export const ExampleWebLayout: React.FC = () => {
99
99
  overflowY: 'auto',
100
100
  }}>
101
101
  <View style={{ padding: 24, maxWidth: 1200, margin: '0 auto', width: '100%' }}>
102
- <Outlet key={currentTheme} />
102
+ <Outlet />
103
103
  </View>
104
104
  </View>
105
105
  </View>