fluekit 2.2.5 → 2.2.8

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.
@@ -0,0 +1,48 @@
1
+ import { ButtonStyle } from './ButtonStyle';
2
+ export declare class ButtonStylePreset {
3
+ /**
4
+ * Filled button (High emphasis)
5
+ * Best for key actions.
6
+ */
7
+ static get materialFilled(): ButtonStyle;
8
+ /**
9
+ * Outlined button (Medium emphasis)
10
+ * Best for secondary actions.
11
+ */
12
+ static get materialOutlined(): ButtonStyle;
13
+ /**
14
+ * Text button (Low emphasis)
15
+ * Best for less prominent actions.
16
+ */
17
+ static get materialText(): ButtonStyle;
18
+ /**
19
+ * Elevated button
20
+ * Used when button needs to separate from background.
21
+ */
22
+ static get materialElevated(): ButtonStyle;
23
+ /**
24
+ * Tonal button (Medium emphasis)
25
+ * Alternative to filled buttons.
26
+ */
27
+ static get materialTonal(): ButtonStyle;
28
+ /**
29
+ * iOS Filled Button
30
+ * Standard iOS filled button style.
31
+ */
32
+ static get cupertinoFilled(): ButtonStyle;
33
+ /**
34
+ * iOS Tinted/Gray Button
35
+ * Used for secondary actions in iOS.
36
+ */
37
+ static get cupertinoTinted(): ButtonStyle;
38
+ /**
39
+ * iOS Plain Button (Text only)
40
+ * Standard text button style (like navigation bar buttons).
41
+ */
42
+ static get cupertinoPlain(): ButtonStyle;
43
+ /**
44
+ * iOS Destructive Button
45
+ * Used for delete or destructive actions.
46
+ */
47
+ static get cupertinoDestructive(): ButtonStyle;
48
+ }
@@ -0,0 +1,35 @@
1
+ import { Component } from 'vue';
2
+ import { ButtonStyle } from './ButtonStyle';
3
+ import { Color } from './Color';
4
+ import { EdgeInsets } from './EdgeInsets';
5
+ import { TextStyle } from './TextStyle';
6
+ interface Props {
7
+ icon: string | Component;
8
+ label?: string;
9
+ iconPosition?: "left" | "right";
10
+ iconSize?: number;
11
+ iconColor?: string | Color;
12
+ disabled?: boolean;
13
+ padding?: EdgeInsets;
14
+ style?: ButtonStyle;
15
+ textStyle?: TextStyle;
16
+ }
17
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
18
+ "long-press": () => any;
19
+ pressed: () => any;
20
+ "tap-down": (payload: any) => any;
21
+ "tap-up": (payload: any) => any;
22
+ "tap-cancel": (payload: any) => any;
23
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
24
+ "onLong-press"?: (() => any) | undefined;
25
+ onPressed?: (() => any) | undefined;
26
+ "onTap-down"?: ((payload: any) => any) | undefined;
27
+ "onTap-up"?: ((payload: any) => any) | undefined;
28
+ "onTap-cancel"?: ((payload: any) => any) | undefined;
29
+ }>, {
30
+ padding: EdgeInsets;
31
+ disabled: boolean;
32
+ iconSize: number;
33
+ iconPosition: "left" | "right";
34
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
35
+ export default _default;
package/dist/index.d.ts CHANGED
@@ -67,6 +67,7 @@ export { default as CupertinoActivityIndicator } from './CupertinoActivityIndica
67
67
  export { default as Drawer } from './Drawer';
68
68
  export { default as ElevatedButton } from './ElevatedButton';
69
69
  export { default as TextButton } from './TextButton';
70
+ export { default as TextButtonWithIcon } from './TextButtonWithIcon';
70
71
  export { default as OutlinedButton } from './OutlinedButton';
71
72
  export { default as IconButton } from './IconButton';
72
73
  export { default as Overlay } from './Overlay';
@@ -86,6 +87,7 @@ export * from './ImageUtils';
86
87
  export * from './Colors';
87
88
  export * from './CupertinoColors';
88
89
  export * from './TextStylePreset';
90
+ export * from './ButtonStylePreset';
89
91
  export * from './Border';
90
92
  export * from './BoxConstraints';
91
93
  export * from './BoxDecoration';
package/dist/index.js CHANGED
@@ -5398,6 +5398,94 @@ var ImageColorBackground_default = /* @__PURE__ */ __plugin_vue_export_helper_de
5398
5398
  "disabled"
5399
5399
  ]));
5400
5400
  }
5401
+ }), TextButtonWithIcon_default = /* @__PURE__ */ defineComponent({
5402
+ inheritAttrs: !1,
5403
+ __name: "TextButtonWithIcon",
5404
+ props: {
5405
+ icon: {},
5406
+ label: {},
5407
+ iconPosition: { default: "left" },
5408
+ iconSize: { default: 24 },
5409
+ iconColor: {},
5410
+ disabled: {
5411
+ type: Boolean,
5412
+ default: !1
5413
+ },
5414
+ padding: { default: () => EdgeInsets.symmetric({
5415
+ vertical: 8,
5416
+ horizontal: 16
5417
+ }) },
5418
+ style: {},
5419
+ textStyle: {}
5420
+ },
5421
+ emits: [
5422
+ "pressed",
5423
+ "long-press",
5424
+ "tap-down",
5425
+ "tap-up",
5426
+ "tap-cancel"
5427
+ ],
5428
+ setup(e, { emit: f }) {
5429
+ let p = e, m = f, g = computed(() => ButtonStyle({
5430
+ backgroundColor: "transparent",
5431
+ foregroundColor: p.disabled ? "rgba(0,0,0,0.38)" : "rgba(0,0,0,0.54)",
5432
+ elevation: 0,
5433
+ padding: p.padding,
5434
+ shape: BorderRadius.circular(4),
5435
+ minimumSize: {
5436
+ width: 64,
5437
+ height: 36
5438
+ },
5439
+ ...p.style
5440
+ }));
5441
+ return (f, p) => (openBlock(), createBlock(Button_default, {
5442
+ style: normalizeStyle(g.value),
5443
+ disabled: e.disabled,
5444
+ onPressed: p[0] ||= (e) => m("pressed"),
5445
+ onLongPress: p[1] ||= (e) => m("long-press"),
5446
+ onTapDown: p[2] ||= (e) => m("tap-down", e),
5447
+ onTapUp: p[3] ||= (e) => m("tap-up", e),
5448
+ onTapCancel: p[4] ||= (e) => m("tap-cancel", e)
5449
+ }, {
5450
+ default: withCtx(() => [createVNode(Row_default, {
5451
+ mainAxisSize: unref(MainAxisSize).min,
5452
+ crossAxisAlignment: unref(CrossAxisAlignment).center,
5453
+ gap: 8
5454
+ }, {
5455
+ default: withCtx(() => [
5456
+ e.iconPosition === "left" ? (openBlock(), createBlock(Icon_default, {
5457
+ key: 0,
5458
+ icon: e.icon,
5459
+ size: e.iconSize,
5460
+ color: e.iconColor || g.value.foregroundColor
5461
+ }, null, 8, [
5462
+ "icon",
5463
+ "size",
5464
+ "color"
5465
+ ])) : createCommentVNode("", !0),
5466
+ e.label ? (openBlock(), createBlock(Text_default, {
5467
+ key: 1,
5468
+ style: normalizeStyle(e.textStyle)
5469
+ }, {
5470
+ default: withCtx(() => [createTextVNode(toDisplayString(e.label), 1)]),
5471
+ _: 1
5472
+ }, 8, ["style"])) : createCommentVNode("", !0),
5473
+ e.iconPosition === "right" ? (openBlock(), createBlock(Icon_default, {
5474
+ key: 2,
5475
+ icon: e.icon,
5476
+ size: e.iconSize,
5477
+ color: e.iconColor || g.value.foregroundColor
5478
+ }, null, 8, [
5479
+ "icon",
5480
+ "size",
5481
+ "color"
5482
+ ])) : createCommentVNode("", !0)
5483
+ ]),
5484
+ _: 1
5485
+ }, 8, ["mainAxisSize", "crossAxisAlignment"])]),
5486
+ _: 1
5487
+ }, 8, ["style", "disabled"]));
5488
+ }
5401
5489
  }), OutlinedButton_default = /* @__PURE__ */ defineComponent({
5402
5490
  inheritAttrs: !1,
5403
5491
  __name: "OutlinedButton",
@@ -6304,6 +6392,184 @@ var CircleAvatar_default = /* @__PURE__ */ defineComponent({
6304
6392
  color: this._materialPrimaryColor
6305
6393
  });
6306
6394
  }
6395
+ }, ButtonStylePreset = class {
6396
+ static get materialFilled() {
6397
+ return ButtonStyle({
6398
+ backgroundColor: Colors.blue,
6399
+ foregroundColor: Colors.white,
6400
+ textStyle: TextStylePreset.labelLarge,
6401
+ padding: EdgeInsets.symmetric({
6402
+ horizontal: 24,
6403
+ vertical: 10
6404
+ }),
6405
+ shape: BorderRadius.circular(20),
6406
+ elevation: 0,
6407
+ minimumSize: {
6408
+ width: 64,
6409
+ height: 40
6410
+ },
6411
+ alignment: Alignment.center
6412
+ });
6413
+ }
6414
+ static get materialOutlined() {
6415
+ return ButtonStyle({
6416
+ backgroundColor: Colors.transparent,
6417
+ foregroundColor: Colors.blue,
6418
+ side: BorderSide({
6419
+ color: Colors.grey,
6420
+ width: 1
6421
+ }),
6422
+ textStyle: TextStylePreset.labelLarge,
6423
+ padding: EdgeInsets.symmetric({
6424
+ horizontal: 24,
6425
+ vertical: 10
6426
+ }),
6427
+ shape: BorderRadius.circular(20),
6428
+ minimumSize: {
6429
+ width: 64,
6430
+ height: 40
6431
+ },
6432
+ alignment: Alignment.center
6433
+ });
6434
+ }
6435
+ static get materialText() {
6436
+ return ButtonStyle({
6437
+ backgroundColor: Colors.transparent,
6438
+ foregroundColor: Colors.blue,
6439
+ textStyle: TextStylePreset.labelLarge,
6440
+ padding: EdgeInsets.symmetric({
6441
+ horizontal: 12,
6442
+ vertical: 10
6443
+ }),
6444
+ shape: BorderRadius.circular(20),
6445
+ minimumSize: {
6446
+ width: 64,
6447
+ height: 40
6448
+ },
6449
+ alignment: Alignment.center
6450
+ });
6451
+ }
6452
+ static get materialElevated() {
6453
+ return ButtonStyle({
6454
+ backgroundColor: "#f3f6fc",
6455
+ foregroundColor: Colors.blue,
6456
+ textStyle: TextStylePreset.labelLarge,
6457
+ padding: EdgeInsets.symmetric({
6458
+ horizontal: 24,
6459
+ vertical: 10
6460
+ }),
6461
+ shape: BorderRadius.circular(20),
6462
+ elevation: 1,
6463
+ shadowColor: "rgba(0,0,0,0.2)",
6464
+ minimumSize: {
6465
+ width: 64,
6466
+ height: 40
6467
+ },
6468
+ alignment: Alignment.center
6469
+ });
6470
+ }
6471
+ static get materialTonal() {
6472
+ return ButtonStyle({
6473
+ backgroundColor: "#dbeafe",
6474
+ foregroundColor: "#1d4ed8",
6475
+ textStyle: TextStylePreset.labelLarge,
6476
+ padding: EdgeInsets.symmetric({
6477
+ horizontal: 24,
6478
+ vertical: 10
6479
+ }),
6480
+ shape: BorderRadius.circular(20),
6481
+ elevation: 0,
6482
+ minimumSize: {
6483
+ width: 64,
6484
+ height: 40
6485
+ },
6486
+ alignment: Alignment.center
6487
+ });
6488
+ }
6489
+ static get cupertinoFilled() {
6490
+ return ButtonStyle({
6491
+ backgroundColor: CupertinoColors.systemBlue,
6492
+ foregroundColor: CupertinoColors.white,
6493
+ textStyle: TextStyle({
6494
+ ...TextStylePreset.body,
6495
+ fontWeight: FontWeight.w600,
6496
+ fontSize: 17
6497
+ }),
6498
+ padding: EdgeInsets.symmetric({
6499
+ horizontal: 20,
6500
+ vertical: 12
6501
+ }),
6502
+ shape: BorderRadius.circular(12),
6503
+ minimumSize: {
6504
+ width: 44,
6505
+ height: 44
6506
+ },
6507
+ alignment: Alignment.center
6508
+ });
6509
+ }
6510
+ static get cupertinoTinted() {
6511
+ return ButtonStyle({
6512
+ backgroundColor: "rgba(118, 118, 128, 0.12)",
6513
+ foregroundColor: CupertinoColors.systemBlue,
6514
+ textStyle: TextStyle({
6515
+ ...TextStylePreset.body,
6516
+ fontWeight: FontWeight.w600,
6517
+ fontSize: 17
6518
+ }),
6519
+ padding: EdgeInsets.symmetric({
6520
+ horizontal: 20,
6521
+ vertical: 12
6522
+ }),
6523
+ shape: BorderRadius.circular(12),
6524
+ minimumSize: {
6525
+ width: 44,
6526
+ height: 44
6527
+ },
6528
+ alignment: Alignment.center
6529
+ });
6530
+ }
6531
+ static get cupertinoPlain() {
6532
+ return ButtonStyle({
6533
+ backgroundColor: Colors.transparent,
6534
+ foregroundColor: CupertinoColors.systemBlue,
6535
+ textStyle: TextStyle({
6536
+ ...TextStylePreset.body,
6537
+ fontWeight: FontWeight.w400,
6538
+ fontSize: 17
6539
+ }),
6540
+ padding: EdgeInsets.symmetric({
6541
+ horizontal: 16,
6542
+ vertical: 10
6543
+ }),
6544
+ shape: BorderRadius.zero,
6545
+ minimumSize: {
6546
+ width: 44,
6547
+ height: 44
6548
+ },
6549
+ alignment: Alignment.center
6550
+ });
6551
+ }
6552
+ static get cupertinoDestructive() {
6553
+ return ButtonStyle({
6554
+ backgroundColor: CupertinoColors.systemRed,
6555
+ foregroundColor: CupertinoColors.white,
6556
+ textStyle: TextStyle({
6557
+ ...TextStylePreset.body,
6558
+ fontWeight: FontWeight.w600,
6559
+ fontSize: 17
6560
+ }),
6561
+ padding: EdgeInsets.symmetric({
6562
+ horizontal: 20,
6563
+ vertical: 12
6564
+ }),
6565
+ shape: BorderRadius.circular(12),
6566
+ minimumSize: {
6567
+ width: 44,
6568
+ height: 44
6569
+ },
6570
+ alignment: Alignment.center
6571
+ });
6572
+ }
6307
6573
  }, ImageFilter = class e {
6308
6574
  _value;
6309
6575
  constructor(e) {
@@ -6355,4 +6621,4 @@ function setDefaultVW(e) {
6355
6621
  function setTransform(e) {
6356
6622
  console.warn("setTransform is no longer supported. Please use <FlueConfigProvider :transform='transform'/> instead.");
6357
6623
  }
6358
- export { ActionChip_default as ActionChip, AlertDialog_default as AlertDialog, Align_default as Align, Alignment, AnimatedContainer_default as AnimatedContainer, AnimatedOpacity_default as AnimatedOpacity, AppBar_default as AppBar, AspectRatio_default as AspectRatio, AssetImage, BackdropFilter_default as BackdropFilter, BlurStyle, Border, BorderRadius, BorderSide, BottomNavigationBar_default as BottomNavigationBar, BottomSheet_default as BottomSheet, Box_default as Box, BoxAlignment, BoxConstraints, BoxDecoration, BoxFit, BoxShadow, BoxShape, Builder_default as Builder, Button_default as Button, ButtonStyle, Card_default as Card, Center_default as Center, Checkbox_default as Checkbox, CheckboxGroup_default as CheckboxGroup, Chip_default as Chip, ChoiceChip_default as ChoiceChip, CircleAvatar_default as CircleAvatar, CircularProgressIndicator_default as CircularProgressIndicator, Clip, ClipOval_default as ClipOval, ClipRRect_default as ClipRRect, Color, ColorUtils, Colors, Column_default as Column, ConstrainedBox_default as ConstrainedBox, Container_default as Container, CrossAxisAlignment, CupertinoActivityIndicator_default as CupertinoActivityIndicator, CupertinoColors, CupertinoContextMenu_default as CupertinoContextMenu, CupertinoNavigationBar_default as CupertinoNavigationBar, CupertinoPageScaffold_default as CupertinoPageScaffold, DecorationImage, Divider_default as Divider, Drawer_default as Drawer, EdgeInsets, ElevatedButton_default as ElevatedButton, Expanded_default as Expanded, Fixed_default as Fixed, FlexBox_default as FlexBox, FloatingLabelBehavior, FlueConfigProvider_default as FlueConfigProvider, FontStyle, FontWeight, GestureDetector_default as GestureDetector, GridView_default as GridView, Icon_default as Icon, IconButton_default as IconButton, Icons, IgnorePointer_default as IgnorePointer, Image_default as Image, ImageColorBackground_default as ImageColorBackground, ImageFilter, ImageProvider, ImageUtils, InkWell_default as InkWell, InputDecoration, LayoutBuilder_default as LayoutBuilder, LinearGradient, LinearProgressIndicator_default as LinearProgressIndicator, ListTile_default as ListTile, ListView_default as ListView, MainAxisAlignment, Matrix4, MediaQuery_default as MediaQuery, MediaQueryKey, MemoryImage, NetworkImage, Opacity_default as Opacity, Orientation, OutlineInputBorder, OutlinedButton_default as OutlinedButton, Overlay_default as Overlay, Padding_default as Padding, PopupMenuButton_default as PopupMenuButton, Positioned_default as Positioned, RadialGradient, Radio_default as Radio, RadioGroup_default as RadioGroup, RadioListTile_default as RadioListTile, RangeSlider_default as RangeSlider, RatingBar_default as RatingBar, RefreshIndicator_default as RefreshIndicator, Row_default as Row, SafeArea_default as SafeArea, Scaffold_default as Scaffold, ScrollView_default as ScrollView, SegmentedControl_default as SegmentedControl, Size, SizedBox_default as SizedBox, Slider_default as Slider, SlidingSegmentedControl_default as SlidingSegmentedControl, SnackBar, Spacer_default as Spacer, Stack_default as Stack, StackFit, Sticky_default as Sticky, Switch_default as Switch, TabBar_default as TabBar, TabBarView_default as TabBarView, Text_default as Text, TextAlign, TextArea_default as TextArea, TextBaseline, TextButton_default as TextButton, TextDecoration, TextDecorationStyle, TextDirection, TextField_default as TextField, TextOverflow, TextStyle, TextStylePreset, TileMode, Transform_default as Transform, UnderlineInputBorder, Wrap_default as Wrap, borderRadiusToStyle, borderSideToStyle, borderToStyle, boxConstraintsToStyle, boxDecorationToStyle, boxShadowToCSS, buttonStyleToStyle, computeLuminance, createAssetImageProvider, createNetworkImageProvider, darken, decorationImageToStyle, edgeInsetsToStyle, extractDominantColor, isBorderRadius, isBorderSide, isBorders, isBoxConstraints, isBoxDecoration, isBoxShadow, isEdgeInsets, isImageFilter, isImageProvider, isTextStyle, keep, lighten, marginToStyle, matrix4ToCSSStyle, normalizeSrc, paddingToStyle, px2vw, resolveColor, setAssetBaseURL, setDefaultVW, setTransform, sizeToStyle, toCSSStyle as textStyleToCSSStyle, toCSSStyle, useMediaQuery, withAlpha, withBlue, withGreen, withOpacity, withRed };
6624
+ export { ActionChip_default as ActionChip, AlertDialog_default as AlertDialog, Align_default as Align, Alignment, AnimatedContainer_default as AnimatedContainer, AnimatedOpacity_default as AnimatedOpacity, AppBar_default as AppBar, AspectRatio_default as AspectRatio, AssetImage, BackdropFilter_default as BackdropFilter, BlurStyle, Border, BorderRadius, BorderSide, BottomNavigationBar_default as BottomNavigationBar, BottomSheet_default as BottomSheet, Box_default as Box, BoxAlignment, BoxConstraints, BoxDecoration, BoxFit, BoxShadow, BoxShape, Builder_default as Builder, Button_default as Button, ButtonStyle, ButtonStylePreset, Card_default as Card, Center_default as Center, Checkbox_default as Checkbox, CheckboxGroup_default as CheckboxGroup, Chip_default as Chip, ChoiceChip_default as ChoiceChip, CircleAvatar_default as CircleAvatar, CircularProgressIndicator_default as CircularProgressIndicator, Clip, ClipOval_default as ClipOval, ClipRRect_default as ClipRRect, Color, ColorUtils, Colors, Column_default as Column, ConstrainedBox_default as ConstrainedBox, Container_default as Container, CrossAxisAlignment, CupertinoActivityIndicator_default as CupertinoActivityIndicator, CupertinoColors, CupertinoContextMenu_default as CupertinoContextMenu, CupertinoNavigationBar_default as CupertinoNavigationBar, CupertinoPageScaffold_default as CupertinoPageScaffold, DecorationImage, Divider_default as Divider, Drawer_default as Drawer, EdgeInsets, ElevatedButton_default as ElevatedButton, Expanded_default as Expanded, Fixed_default as Fixed, FlexBox_default as FlexBox, FloatingLabelBehavior, FlueConfigProvider_default as FlueConfigProvider, FontStyle, FontWeight, GestureDetector_default as GestureDetector, GridView_default as GridView, Icon_default as Icon, IconButton_default as IconButton, Icons, IgnorePointer_default as IgnorePointer, Image_default as Image, ImageColorBackground_default as ImageColorBackground, ImageFilter, ImageProvider, ImageUtils, InkWell_default as InkWell, InputDecoration, LayoutBuilder_default as LayoutBuilder, LinearGradient, LinearProgressIndicator_default as LinearProgressIndicator, ListTile_default as ListTile, ListView_default as ListView, MainAxisAlignment, Matrix4, MediaQuery_default as MediaQuery, MediaQueryKey, MemoryImage, NetworkImage, Opacity_default as Opacity, Orientation, OutlineInputBorder, OutlinedButton_default as OutlinedButton, Overlay_default as Overlay, Padding_default as Padding, PopupMenuButton_default as PopupMenuButton, Positioned_default as Positioned, RadialGradient, Radio_default as Radio, RadioGroup_default as RadioGroup, RadioListTile_default as RadioListTile, RangeSlider_default as RangeSlider, RatingBar_default as RatingBar, RefreshIndicator_default as RefreshIndicator, Row_default as Row, SafeArea_default as SafeArea, Scaffold_default as Scaffold, ScrollView_default as ScrollView, SegmentedControl_default as SegmentedControl, Size, SizedBox_default as SizedBox, Slider_default as Slider, SlidingSegmentedControl_default as SlidingSegmentedControl, SnackBar, Spacer_default as Spacer, Stack_default as Stack, StackFit, Sticky_default as Sticky, Switch_default as Switch, TabBar_default as TabBar, TabBarView_default as TabBarView, Text_default as Text, TextAlign, TextArea_default as TextArea, TextBaseline, TextButton_default as TextButton, TextButtonWithIcon_default as TextButtonWithIcon, TextDecoration, TextDecorationStyle, TextDirection, TextField_default as TextField, TextOverflow, TextStyle, TextStylePreset, TileMode, Transform_default as Transform, UnderlineInputBorder, Wrap_default as Wrap, borderRadiusToStyle, borderSideToStyle, borderToStyle, boxConstraintsToStyle, boxDecorationToStyle, boxShadowToCSS, buttonStyleToStyle, computeLuminance, createAssetImageProvider, createNetworkImageProvider, darken, decorationImageToStyle, edgeInsetsToStyle, extractDominantColor, isBorderRadius, isBorderSide, isBorders, isBoxConstraints, isBoxDecoration, isBoxShadow, isEdgeInsets, isImageFilter, isImageProvider, isTextStyle, keep, lighten, marginToStyle, matrix4ToCSSStyle, normalizeSrc, paddingToStyle, px2vw, resolveColor, setAssetBaseURL, setDefaultVW, setTransform, sizeToStyle, toCSSStyle as textStyleToCSSStyle, toCSSStyle, useMediaQuery, withAlpha, withBlue, withGreen, withOpacity, withRed };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluekit",
3
- "version": "2.2.5",
3
+ "version": "2.2.8",
4
4
  "description": "A Flutter-style Layout UI kit for Vue",
5
5
  "homepage": "https://fi2zz.github.io/fluekit/",
6
6
  "repository": {