canvasframework 0.4.3 → 0.4.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.
@@ -137,6 +137,7 @@ const FIXED_COMPONENT_TYPES = new Set([
137
137
  FAB,
138
138
  Toast,
139
139
  Camera,
140
+ QRCodeReader,
140
141
  Banner,
141
142
  SliverAppBar,
142
143
  BottomSheet,
package/core/UIBuilder.js CHANGED
@@ -57,6 +57,7 @@ import SliverAppBar from '../components/SliverAppBar.js';
57
57
  import AudioPlayer from '../components/AudioPlayer.js';
58
58
  import Camera from '../components/Camera.js';
59
59
  import TimePicker from '../components/TimePicker.js';
60
+ import QRCodeReader from '../components/QRCodeReader.js';
60
61
 
61
62
  // Features
62
63
  import PullToRefresh from '../features/PullToRefresh.js';
@@ -106,6 +107,7 @@ const Components = {
106
107
  SwipeableListItem,
107
108
  ListItem,
108
109
  List,
110
+ QRCodeReader,
109
111
  VirtualList,
110
112
  BottomSheet,
111
113
  ProgressBar,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "canvasframework",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Canvas-based cross-platform UI framework (Material & Cupertino)",
5
5
  "type": "module",
6
6
  "main": "./index.js",