fluekit 2.1.2 → 2.2.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/dist/Icons.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  export declare const Icons: {
2
+ checkCircle: string;
3
+ person: string;
2
4
  close: string;
3
5
  menu: string;
4
6
  moreVert: string;
@@ -1,7 +1,9 @@
1
+ import { Component } from 'vue';
1
2
  import { BorderSide } from './Border';
2
3
  import { BorderRadius } from './BorderRadius';
3
- import { TextStyle } from './TextStyle';
4
4
  import { Color } from './Color';
5
+ import { EdgeInsetsProps } from './EdgeInsets';
6
+ import { TextStyle } from './TextStyle';
5
7
  export interface InputBorder {
6
8
  borderSide?: BorderSide;
7
9
  borderRadius?: BorderRadius;
@@ -15,23 +17,58 @@ export declare function UnderlineInputBorder(options?: {
15
17
  borderSide?: BorderSide;
16
18
  borderRadius?: BorderRadius;
17
19
  }): InputBorder;
20
+ /**
21
+ * Defines how a floating label behaves.
22
+ */
23
+ export declare const FloatingLabelBehavior: {
24
+ /**
25
+ * The label always floats above the input field.
26
+ */
27
+ readonly always: "always";
28
+ /**
29
+ * The label floats when the input field is focused or has content.
30
+ * This is the default behavior.
31
+ */
32
+ readonly auto: "auto";
33
+ /**
34
+ * The label never floats. It behaves like a placeholder that disappears when content is entered.
35
+ */
36
+ readonly never: "never";
37
+ };
18
38
  export interface InputDecoration {
19
39
  labelText?: string;
20
40
  hintText?: string;
21
41
  helperText?: string;
22
42
  errorText?: string;
43
+ icon?: string | Component;
44
+ prefixIcon?: string | Component;
45
+ suffixIcon?: string | Component;
23
46
  prefixText?: string;
24
47
  suffixText?: string;
48
+ iconColor?: string | Color;
49
+ prefixIconColor?: string | Color;
50
+ suffixIconColor?: string | Color;
51
+ iconSize?: string | number;
52
+ prefixIconSize?: string | number;
53
+ suffixIconSize?: string | number;
25
54
  border?: InputBorder;
26
55
  enabledBorder?: InputBorder;
27
56
  focusedBorder?: InputBorder;
28
57
  errorBorder?: InputBorder;
58
+ focusedErrorBorder?: InputBorder;
29
59
  disabledBorder?: InputBorder;
30
60
  filled?: boolean;
31
61
  fillColor?: string | Color;
32
- contentPadding?: number | number[];
62
+ contentPadding?: number | number[] | EdgeInsetsProps;
63
+ isDense?: boolean;
64
+ isCollapsed?: boolean;
65
+ floatingLabelBehavior?: keyof typeof FloatingLabelBehavior;
66
+ counterText?: string;
33
67
  labelStyle?: TextStyle;
68
+ floatingLabelStyle?: TextStyle;
34
69
  hintStyle?: TextStyle;
35
70
  helperStyle?: TextStyle;
36
71
  errorStyle?: TextStyle;
72
+ counterStyle?: TextStyle;
37
73
  }
74
+ export declare function InputDecoration(options?: InputDecoration): InputDecoration;
@@ -1,6 +1,6 @@
1
+ import { Color } from './Color';
1
2
  import { InputDecoration } from './InputDecoration';
2
3
  import { TextStyle } from './TextStyle';
3
- import { Color } from './Color';
4
4
  interface Props {
5
5
  modelValue?: string | number;
6
6
  decoration?: InputDecoration;
@@ -23,8 +23,11 @@ interface Props {
23
23
  declare function __VLS_template(): {
24
24
  attrs: Partial<{}>;
25
25
  slots: {
26
+ icon?(_: {}): any;
27
+ prefixIcon?(_: {}): any;
26
28
  prefix?(_: {}): any;
27
29
  suffix?(_: {}): any;
30
+ suffixIcon?(_: {}): any;
28
31
  };
29
32
  refs: {
30
33
  prefixRef: HTMLDivElement;
@@ -0,0 +1,151 @@
1
+ import { TextStyle } from './TextStyle';
2
+ /**
3
+ * 文本样式预设
4
+ * 包含 iOS (Cupertino) 和 Material Design 3 风格
5
+ */
6
+ export declare class TextStylePreset {
7
+ private static _cupertinoPrimaryColor;
8
+ private static _cupertinoFontFamily;
9
+ private static _materialPrimaryColor;
10
+ private static _materialFontFamily;
11
+ /**
12
+ * [iOS] 用于大标题,例如导航栏的大标题
13
+ * Size: 34pt
14
+ */
15
+ static get largeTitle(): TextStyle;
16
+ /**
17
+ * [iOS] 一级标题
18
+ * Size: 28pt
19
+ */
20
+ static get title1(): TextStyle;
21
+ /**
22
+ * [iOS] 二级标题
23
+ * Size: 22pt
24
+ */
25
+ static get title2(): TextStyle;
26
+ /**
27
+ * [iOS] 三级标题
28
+ * Size: 20pt
29
+ */
30
+ static get title3(): TextStyle;
31
+ /**
32
+ * [iOS] 强调文本,通常用于段落标题
33
+ * Size: 17pt, SemiBold
34
+ */
35
+ static get headline(): TextStyle;
36
+ /**
37
+ * [iOS] 正文文本
38
+ * Size: 17pt
39
+ */
40
+ static get body(): TextStyle;
41
+ /**
42
+ * [iOS] 标注文本
43
+ * Size: 16pt
44
+ */
45
+ static get callout(): TextStyle;
46
+ /**
47
+ * [iOS] 副标题
48
+ * Size: 15pt
49
+ */
50
+ static get subhead(): TextStyle;
51
+ /**
52
+ * [iOS] 脚注
53
+ * Size: 13pt
54
+ */
55
+ static get footnote(): TextStyle;
56
+ /**
57
+ * [iOS] 辅助说明文本 1
58
+ * Size: 12pt
59
+ */
60
+ static get caption1(): TextStyle;
61
+ /**
62
+ * [iOS] 辅助说明文本 2
63
+ * Size: 11pt
64
+ */
65
+ static get caption2(): TextStyle;
66
+ /**
67
+ * [iOS] 动作/按钮文本
68
+ * Size: 17pt, Color: System Blue
69
+ */
70
+ static get action(): TextStyle;
71
+ /**
72
+ * [iOS] 较小的动作/按钮文本
73
+ * Size: 15pt, Color: System Blue
74
+ */
75
+ static get actionSmall(): TextStyle;
76
+ /**
77
+ * [Material] Display Large
78
+ * Size: 57sp, Weight: 400, LineHeight: 64sp, Tracking: -0.25
79
+ */
80
+ static get displayLarge(): TextStyle;
81
+ /**
82
+ * [Material] Display Medium
83
+ * Size: 45sp, Weight: 400, LineHeight: 52sp, Tracking: 0
84
+ */
85
+ static get displayMedium(): TextStyle;
86
+ /**
87
+ * [Material] Display Small
88
+ * Size: 36sp, Weight: 400, LineHeight: 44sp, Tracking: 0
89
+ */
90
+ static get displaySmall(): TextStyle;
91
+ /**
92
+ * [Material] Headline Large
93
+ * Size: 32sp, Weight: 400, LineHeight: 40sp, Tracking: 0
94
+ */
95
+ static get headlineLarge(): TextStyle;
96
+ /**
97
+ * [Material] Headline Medium
98
+ * Size: 28sp, Weight: 400, LineHeight: 36sp, Tracking: 0
99
+ */
100
+ static get headlineMedium(): TextStyle;
101
+ /**
102
+ * [Material] Headline Small
103
+ * Size: 24sp, Weight: 400, LineHeight: 32sp, Tracking: 0
104
+ */
105
+ static get headlineSmall(): TextStyle;
106
+ /**
107
+ * [Material] Title Large
108
+ * Size: 22sp, Weight: 400, LineHeight: 28sp, Tracking: 0
109
+ */
110
+ static get titleLarge(): TextStyle;
111
+ /**
112
+ * [Material] Title Medium
113
+ * Size: 16sp, Weight: 500, LineHeight: 24sp, Tracking: 0.15
114
+ */
115
+ static get titleMedium(): TextStyle;
116
+ /**
117
+ * [Material] Title Small
118
+ * Size: 14sp, Weight: 500, LineHeight: 20sp, Tracking: 0.1
119
+ */
120
+ static get titleSmall(): TextStyle;
121
+ /**
122
+ * [Material] Label Large
123
+ * Size: 14sp, Weight: 500, LineHeight: 20sp, Tracking: 0.1
124
+ */
125
+ static get labelLarge(): TextStyle;
126
+ /**
127
+ * [Material] Label Medium
128
+ * Size: 12sp, Weight: 500, LineHeight: 16sp, Tracking: 0.5
129
+ */
130
+ static get labelMedium(): TextStyle;
131
+ /**
132
+ * [Material] Label Small
133
+ * Size: 11sp, Weight: 500, LineHeight: 16sp, Tracking: 0.5
134
+ */
135
+ static get labelSmall(): TextStyle;
136
+ /**
137
+ * [Material] Body Large
138
+ * Size: 16sp, Weight: 400, LineHeight: 24sp, Tracking: 0.5
139
+ */
140
+ static get bodyLarge(): TextStyle;
141
+ /**
142
+ * [Material] Body Medium
143
+ * Size: 14sp, Weight: 400, LineHeight: 20sp, Tracking: 0.25
144
+ */
145
+ static get bodyMedium(): TextStyle;
146
+ /**
147
+ * [Material] Body Small
148
+ * Size: 12sp, Weight: 400, LineHeight: 16sp, Tracking: 0.4
149
+ */
150
+ static get bodySmall(): TextStyle;
151
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
package/dist/index.css CHANGED
@@ -1,2 +1,2 @@
1
- .fluekit-button[data-v-3f0d5ead]{appearance:none;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-align:inherit;box-sizing:border-box;background:0 0;border:0;outline:0;margin:0;padding:0}.fluekit-button[data-v-3f0d5ead]:disabled{cursor:default}.fluekit-image[data-v-ce382550]{display:block}.fluekit-icon[data-v-96834c76]{-webkit-user-select:none;user-select:none;pointer-events:none}.icon-svg[data-v-96834c76]{fill:currentColor;width:100%;height:100%;display:block}[data-v-96834c76] svg{fill:currentColor;width:100%;height:100%}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:before{content:"";position:html;background-color:var(--v52d32946);border-radius:10px;width:100%;height:25%;display:block}.flue-cupertino-activity-indicator-blade[data-v-bf681109]{opacity:0;animation:1s linear infinite flue-cupertino-fade-bf681109}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:first-child{animation-delay:-1s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(2){animation-delay:-.9167s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(3){animation-delay:-.8333s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(4){animation-delay:-.75s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(5){animation-delay:-.6667s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(6){animation-delay:-.5833s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(7){animation-delay:-.5s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(8){animation-delay:-.4167s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(9){animation-delay:-.3333s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(10){animation-delay:-.25s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(11){animation-delay:-.1667s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(12){animation-delay:-.0833s}@keyframes flue-cupertino-fade-bf681109{0%{opacity:1}to{opacity:.3}}.fluekit-refresh-indicator[data-v-2456a3bd]{height:100%;position:relative;overflow:hidden}.fluekit-refresh-spinner[data-v-2456a3bd]{z-index:10;border-radius:50%;justify-content:center;align-items:center;width:40px;height:40px;margin-left:-20px;transition:top .2s,opacity .2s;display:flex;position:absolute;left:50%}.fluekit-refresh-content[data-v-2456a3bd]{height:100%}.fluekit-list-view-wrapper[data-v-2eabca74]{width:100%;height:100%;display:block;overflow:hidden}.flutter-stack[data-v-aefe47c2]>*{grid-area:1/1/2/2}.fluekit-text-field[data-v-52a37cda]{width:100%;margin-top:16px;font-family:inherit;position:relative}.fluekit-input-container[data-v-52a37cda]{box-sizing:border-box;width:100%}.fluekit-input-element[data-v-52a37cda]{width:100%;color:inherit;resize:none;background:0 0;border:none;outline:none;flex:1;margin:0;padding:0;font-family:inherit;font-size:16px}.fluekit-input-element[data-v-52a37cda]::placeholder{color:var(--v78fa3e8e);font-size:var(--v0b1ffc4d);opacity:1}.fluekit-input-label[data-v-52a37cda]{z-index:1}.fluekit-input-footer[data-v-52a37cda]{justify-content:space-between;margin-top:4px;display:flex}.fluekit-input-helper[data-v-52a37cda]{color:#666;font-size:12px}.fluekit-input-helper-spacer[data-v-52a37cda]{flex:1}.fluekit-input-counter[data-v-52a37cda]{color:#666;margin-left:auto;font-size:12px}.fluekit-input-helper.is-error[data-v-52a37cda]{color:#f44336}.flutter-transform[data-v-c4ab6ce1]{box-sizing:border-box}.ink-well[data-v-a5c5a2ad]{cursor:pointer;display:block;position:relative;overflow:hidden}.ink-well.disabled[data-v-a5c5a2ad]{cursor:default}.ripple[data-v-a5c5a2ad]{pointer-events:none;border-radius:50%;animation:.6s linear ripple-a5c5a2ad;position:absolute;transform:scale(0)}@keyframes ripple-a5c5a2ad{to{opacity:0;transform:scale(4)}}.slider-container[data-v-18cb2b41],.range-slider-container[data-v-f10382ff]{width:100%;position:relative}.bottom-sheet-overlay[data-v-6948b23d]{z-index:9999;background-color:#0000008a;justify-content:center;align-items:flex-end;display:flex;position:fixed;inset:0}.flue-cupertino-navigation-bar[data-v-a51399c0]{-webkit-backdrop-filter:blur(20px);z-index:100;width:100%}.flue-nav-bar-middle[data-v-a51399c0]{justify-content:center;align-items:center;max-width:60%;display:flex}.snackbar-overlay[data-v-d8abf3ed]{z-index:9999;pointer-events:none;justify-content:center;display:flex;position:fixed;bottom:0;left:0;right:0}.snackbar-overlay[data-v-d8abf3ed]>*{pointer-events:auto}.flue-app-bar-leading[data-v-1fed62cd]{align-items:center;margin-right:16px;display:flex}.flue-app-bar-actions[data-v-1fed62cd]{align-items:center;margin-left:16px;display:flex}.fluekit-bottom-navigation-bar-ios[data-v-11798dea]{-webkit-backdrop-filter:blur(20px)}.fluekit-context-menu-anchor[data-v-8f6a31d2]{display:inline-block}.fluekit-context-menu-overlay[data-v-8f6a31d2]{z-index:9999;flex-direction:column;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.fluekit-context-menu-backdrop[data-v-8f6a31d2]{-webkit-backdrop-filter:blur(10px);background:#0006;width:100%;height:100%;position:absolute;top:0;left:0}.fluekit-context-menu-content[data-v-8f6a31d2]{z-index:10001;width:250px;animation:.2s ease-out scale-in-8f6a31d2;position:relative}.fluekit-action-group[data-v-8f6a31d2]{-webkit-backdrop-filter:blur(20px);background:#f9f9f9c7;border-radius:14px;margin-bottom:16px;overflow:hidden}.fluekit-context-menu-action[data-v-8f6a31d2]{text-align:center;cursor:pointer;background:0 0;border-bottom:.5px solid #0000001a;justify-content:center;align-items:center;gap:8px;padding:16px;display:flex}.fluekit-context-menu-action[data-v-8f6a31d2]:last-child{border-bottom:none}.fluekit-context-menu-action[data-v-8f6a31d2]:active{background:#0000001a}.action-text[data-v-8f6a31d2]{color:#007aff;font-family:-apple-system,BlinkMacSystemFont,sans-serif;font-size:17px}.is-destructive .action-text[data-v-8f6a31d2]{color:#ff3b30}.is-default .action-text[data-v-8f6a31d2]{font-weight:600}.cancel-group[data-v-8f6a31d2]{margin-top:8px}.cancel-action .action-text[data-v-8f6a31d2]{font-weight:600}.fade-enter-active[data-v-8f6a31d2],.fade-leave-active[data-v-8f6a31d2]{transition:opacity .2s}.fade-enter-from[data-v-8f6a31d2],.fade-leave-to[data-v-8f6a31d2]{opacity:0}@keyframes scale-in-8f6a31d2{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}.flue-aspect-ratio[data-v-e23e6712]{grid-template-rows:100%;grid-template-columns:100%;display:grid}.flue-image-color-background[data-v-de3ea6be]{box-sizing:border-box;flex-direction:column;display:flex}.flue-linear-progress-indicator[data-v-111d0e67]{border-radius:0}@keyframes flue-linear-indeterminate-111d0e67{0%{transform:translate(0)scaleX(0)}40%{transform:translate(0)scaleX(.4)}to{transform:translate(100%)scaleX(.5)}}@keyframes flue-circular-rotate-bb62fbeb{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes flue-circular-dash-bb62fbeb{0%{stroke-dasharray:1 200;stroke-dashoffset:0}50%{stroke-dasharray:89 200;stroke-dashoffset:-35px}to{stroke-dasharray:89 200;stroke-dashoffset:-124px}}.fluekit-overlay-fade-enter-active[data-v-ca626865],.fluekit-overlay-fade-leave-active[data-v-ca626865]{transition:opacity .25s}.fluekit-overlay-fade-enter-from[data-v-ca626865],.fluekit-overlay-fade-leave-to[data-v-ca626865]{opacity:0}.fluekit-drawer-root[data-v-7181dfec]{pointer-events:none;z-index:1000;position:absolute;inset:0}.fluekit-drawer-slide-enter-active[data-v-7181dfec],.fluekit-drawer-slide-leave-active[data-v-7181dfec]{transition:transform .3s}.fluekit-drawer-slide-enter-from[data-v-7181dfec],.fluekit-drawer-slide-leave-to[data-v-7181dfec]{transform:translate(-100%)}.fluekit-drawer-slide-end-enter-active[data-v-7181dfec],.fluekit-drawer-slide-end-leave-active[data-v-7181dfec]{transition:transform .3s}.fluekit-drawer-slide-end-enter-from[data-v-7181dfec],.fluekit-drawer-slide-end-leave-to[data-v-7181dfec]{transform:translate(100%)}.popup-scale-enter-active[data-v-5d7cdcaa],.popup-scale-leave-active[data-v-5d7cdcaa]{transform-origin:100% 0;transition:opacity .2s,transform .2s}.popup-scale-enter-from[data-v-5d7cdcaa],.popup-scale-leave-to[data-v-5d7cdcaa]{opacity:0;transform:scale(.9)}.fluekit-chip-avatar[data-v-4a66cf54]{border-radius:50%;justify-content:center;align-items:center;width:24px;height:24px;display:flex;overflow:hidden}.fluekit-chip-delete-icon[data-v-4a66cf54]{cursor:pointer;opacity:.54;justify-content:center;align-items:center;margin-left:4px;display:flex}.fluekit-chip-delete-icon[data-v-4a66cf54]:hover{opacity:.87}.fluekit-tab-bar-view[data-v-e20dd01b]{flex:1;width:100%;height:100%;display:flex;overflow:hidden}.fluekit-tab-bar-view-content[data-v-e20dd01b]{width:100%;height:100%;transition:transform .3s cubic-bezier(.25,.8,.25,1);display:flex}[data-v-e20dd01b]>*{flex:0 0 100%;width:100%;height:100%}
1
+ .fluekit-button[data-v-6944da7c]{appearance:none;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit;text-align:inherit;box-sizing:border-box;background:0 0;border:0;outline:0;margin:0;padding:0}.fluekit-button[data-v-6944da7c]:disabled{cursor:default}.fluekit-image[data-v-ce382550]{display:block}.fluekit-icon[data-v-96834c76]{-webkit-user-select:none;user-select:none;pointer-events:none}.icon-svg[data-v-96834c76]{fill:currentColor;width:100%;height:100%;display:block}[data-v-96834c76] svg{fill:currentColor;width:100%;height:100%}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:before{content:"";position:html;background-color:var(--v52d32946);border-radius:10px;width:100%;height:25%;display:block}.flue-cupertino-activity-indicator-blade[data-v-bf681109]{opacity:0;animation:1s linear infinite flue-cupertino-fade-bf681109}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:first-child{animation-delay:-1s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(2){animation-delay:-.9167s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(3){animation-delay:-.8333s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(4){animation-delay:-.75s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(5){animation-delay:-.6667s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(6){animation-delay:-.5833s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(7){animation-delay:-.5s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(8){animation-delay:-.4167s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(9){animation-delay:-.3333s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(10){animation-delay:-.25s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(11){animation-delay:-.1667s}.flue-cupertino-activity-indicator-blade[data-v-bf681109]:nth-child(12){animation-delay:-.0833s}@keyframes flue-cupertino-fade-bf681109{0%{opacity:1}to{opacity:.3}}.fluekit-refresh-indicator[data-v-2456a3bd]{height:100%;position:relative;overflow:hidden}.fluekit-refresh-spinner[data-v-2456a3bd]{z-index:10;border-radius:50%;justify-content:center;align-items:center;width:40px;height:40px;margin-left:-20px;transition:top .2s,opacity .2s;display:flex;position:absolute;left:50%}.fluekit-refresh-content[data-v-2456a3bd]{height:100%}.fluekit-list-view-wrapper[data-v-2eabca74]{width:100%;height:100%;display:block;overflow:hidden}.flutter-stack[data-v-aefe47c2]>*{grid-area:1/1/2/2}.fluekit-text-field-wrapper[data-v-49ebcb04]{flex-direction:row;align-items:flex-start;width:100%;margin-top:16px;font-family:inherit;display:flex;position:relative}.fluekit-input-icon[data-v-49ebcb04]{color:var(--v529ac6df);align-items:center;margin-top:12px;margin-right:16px;display:flex}.fluekit-text-field-content[data-v-49ebcb04]{flex-direction:column;flex:1;display:flex;position:relative}.fluekit-input-container[data-v-49ebcb04]{box-sizing:border-box;width:100%}.fluekit-input-prefix-icon[data-v-49ebcb04],.fluekit-input-suffix-icon[data-v-49ebcb04]{color:#666;align-items:center;padding:0 8px;display:flex}.fluekit-input-prefix-icon[data-v-49ebcb04]{color:var(--v52e8cada);padding-left:0}.fluekit-input-suffix-icon[data-v-49ebcb04]{color:var(--v64aa09d2);padding-right:0}.fluekit-input-element[data-v-49ebcb04]{width:100%;color:inherit;resize:none;background:0 0;border:none;outline:none;flex:1;margin:0;padding:0;font-family:inherit;font-size:16px}.fluekit-input-element[data-v-49ebcb04]::placeholder{color:var(--v0c2d33fe);font-size:var(--af0f9b80);opacity:1}.fluekit-input-label[data-v-49ebcb04]{z-index:1}.fluekit-input-footer[data-v-49ebcb04]{justify-content:space-between;margin-top:4px;display:flex}.fluekit-input-helper[data-v-49ebcb04]{color:#666;font-size:12px}.fluekit-input-helper-spacer[data-v-49ebcb04]{flex:1}.fluekit-input-counter[data-v-49ebcb04]{color:#666;margin-left:auto;font-size:12px}.fluekit-input-helper.is-error[data-v-49ebcb04]{color:#f44336}.flutter-transform[data-v-c4ab6ce1]{box-sizing:border-box}.ink-well[data-v-a5c5a2ad]{cursor:pointer;display:block;position:relative;overflow:hidden}.ink-well.disabled[data-v-a5c5a2ad]{cursor:default}.ripple[data-v-a5c5a2ad]{pointer-events:none;border-radius:50%;animation:.6s linear ripple-a5c5a2ad;position:absolute;transform:scale(0)}@keyframes ripple-a5c5a2ad{to{opacity:0;transform:scale(4)}}.slider-container[data-v-18cb2b41],.range-slider-container[data-v-f10382ff]{width:100%;position:relative}.bottom-sheet-overlay[data-v-6948b23d]{z-index:9999;background-color:#0000008a;justify-content:center;align-items:flex-end;display:flex;position:fixed;inset:0}.flue-cupertino-navigation-bar[data-v-a51399c0]{-webkit-backdrop-filter:blur(20px);z-index:100;width:100%}.flue-nav-bar-middle[data-v-a51399c0]{justify-content:center;align-items:center;max-width:60%;display:flex}.snackbar-overlay[data-v-d8abf3ed]{z-index:9999;pointer-events:none;justify-content:center;display:flex;position:fixed;bottom:0;left:0;right:0}.snackbar-overlay[data-v-d8abf3ed]>*{pointer-events:auto}.flue-app-bar-leading[data-v-1fed62cd]{align-items:center;margin-right:16px;display:flex}.flue-app-bar-actions[data-v-1fed62cd]{align-items:center;margin-left:16px;display:flex}.fluekit-bottom-navigation-bar-ios[data-v-11798dea]{-webkit-backdrop-filter:blur(20px)}.fluekit-context-menu-anchor[data-v-8f6a31d2]{display:inline-block}.fluekit-context-menu-overlay[data-v-8f6a31d2]{z-index:9999;flex-direction:column;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.fluekit-context-menu-backdrop[data-v-8f6a31d2]{-webkit-backdrop-filter:blur(10px);background:#0006;width:100%;height:100%;position:absolute;top:0;left:0}.fluekit-context-menu-content[data-v-8f6a31d2]{z-index:10001;width:250px;animation:.2s ease-out scale-in-8f6a31d2;position:relative}.fluekit-action-group[data-v-8f6a31d2]{-webkit-backdrop-filter:blur(20px);background:#f9f9f9c7;border-radius:14px;margin-bottom:16px;overflow:hidden}.fluekit-context-menu-action[data-v-8f6a31d2]{text-align:center;cursor:pointer;background:0 0;border-bottom:.5px solid #0000001a;justify-content:center;align-items:center;gap:8px;padding:16px;display:flex}.fluekit-context-menu-action[data-v-8f6a31d2]:last-child{border-bottom:none}.fluekit-context-menu-action[data-v-8f6a31d2]:active{background:#0000001a}.action-text[data-v-8f6a31d2]{color:#007aff;font-family:-apple-system,BlinkMacSystemFont,sans-serif;font-size:17px}.is-destructive .action-text[data-v-8f6a31d2]{color:#ff3b30}.is-default .action-text[data-v-8f6a31d2]{font-weight:600}.cancel-group[data-v-8f6a31d2]{margin-top:8px}.cancel-action .action-text[data-v-8f6a31d2]{font-weight:600}.fade-enter-active[data-v-8f6a31d2],.fade-leave-active[data-v-8f6a31d2]{transition:opacity .2s}.fade-enter-from[data-v-8f6a31d2],.fade-leave-to[data-v-8f6a31d2]{opacity:0}@keyframes scale-in-8f6a31d2{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}.flue-aspect-ratio[data-v-e23e6712]{grid-template-rows:100%;grid-template-columns:100%;display:grid}.flue-image-color-background[data-v-de3ea6be]{box-sizing:border-box;flex-direction:column;display:flex}.flue-linear-progress-indicator[data-v-111d0e67]{border-radius:0}@keyframes flue-linear-indeterminate-111d0e67{0%{transform:translate(0)scaleX(0)}40%{transform:translate(0)scaleX(.4)}to{transform:translate(100%)scaleX(.5)}}@keyframes flue-circular-rotate-bb62fbeb{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes flue-circular-dash-bb62fbeb{0%{stroke-dasharray:1 200;stroke-dashoffset:0}50%{stroke-dasharray:89 200;stroke-dashoffset:-35px}to{stroke-dasharray:89 200;stroke-dashoffset:-124px}}.fluekit-overlay-fade-enter-active[data-v-ca626865],.fluekit-overlay-fade-leave-active[data-v-ca626865]{transition:opacity .25s}.fluekit-overlay-fade-enter-from[data-v-ca626865],.fluekit-overlay-fade-leave-to[data-v-ca626865]{opacity:0}.fluekit-drawer-root[data-v-7181dfec]{pointer-events:none;z-index:1000;position:absolute;inset:0}.fluekit-drawer-slide-enter-active[data-v-7181dfec],.fluekit-drawer-slide-leave-active[data-v-7181dfec]{transition:transform .3s}.fluekit-drawer-slide-enter-from[data-v-7181dfec],.fluekit-drawer-slide-leave-to[data-v-7181dfec]{transform:translate(-100%)}.fluekit-drawer-slide-end-enter-active[data-v-7181dfec],.fluekit-drawer-slide-end-leave-active[data-v-7181dfec]{transition:transform .3s}.fluekit-drawer-slide-end-enter-from[data-v-7181dfec],.fluekit-drawer-slide-end-leave-to[data-v-7181dfec]{transform:translate(100%)}.popup-scale-enter-active[data-v-5d7cdcaa],.popup-scale-leave-active[data-v-5d7cdcaa]{transform-origin:100% 0;transition:opacity .2s,transform .2s}.popup-scale-enter-from[data-v-5d7cdcaa],.popup-scale-leave-to[data-v-5d7cdcaa]{opacity:0;transform:scale(.9)}.fluekit-chip-avatar[data-v-4a66cf54]{border-radius:50%;justify-content:center;align-items:center;width:24px;height:24px;display:flex;overflow:hidden}.fluekit-chip-delete-icon[data-v-4a66cf54]{cursor:pointer;opacity:.54;justify-content:center;align-items:center;margin-left:4px;display:flex}.fluekit-chip-delete-icon[data-v-4a66cf54]:hover{opacity:.87}.fluekit-tab-bar-view[data-v-e20dd01b]{flex:1;width:100%;height:100%;display:flex;overflow:hidden}.fluekit-tab-bar-view-content[data-v-e20dd01b]{width:100%;height:100%;transition:transform .3s cubic-bezier(.25,.8,.25,1);display:flex}[data-v-e20dd01b]>*{flex:0 0 100%;width:100%;height:100%}
2
2
  /*$vite$:1*/
package/dist/index.d.ts CHANGED
@@ -84,6 +84,7 @@ export * from './Color';
84
84
  export * from './ImageUtils';
85
85
  export * from './Colors';
86
86
  export * from './CupertinoColors';
87
+ export * from './TextStylePreset';
87
88
  export * from './Border';
88
89
  export * from './BoxConstraints';
89
90
  export * from './BoxDecoration';