@feedmepos/ui-library 1.1.16 → 1.1.17

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/CHANGELOG.md CHANGED
@@ -6,14 +6,25 @@
6
6
  - Separate font styles by locale
7
7
  - Redesign the font system
8
8
 
9
- ## 1.1.16
9
+ ## 1.1.17 - 2024-05-20
10
+
11
+ ### Feature
12
+
13
+ - `FmBottomSheet`
14
+ - Support pointer swipe to close the bottom sheet
15
+ - `FmScorecard`
16
+ - New component for displaying a scorecard
17
+ - `FmSimpleCalendar`
18
+ - Update the order of comparison quick select
19
+
20
+ ## 1.1.16 - 2024-05-19
10
21
 
11
22
  ## Bug fixes
12
23
 
13
24
  - `Calendar`
14
25
  - Fixed the issue that Calendar related component doesn't refer the disable status from fromProvider
15
26
 
16
- ## 1.1.15
27
+ ## 1.1.15 - 2024-05-11
17
28
 
18
29
  ### Feature
19
30
 
@@ -23,7 +34,7 @@
23
34
  - `ToolTip`
24
35
  - Now tooltip supported touch devices
25
36
 
26
- ## 1.1.14
37
+ ## 1.1.14 - 2024-05-10
27
38
 
28
39
  ### Feature
29
40
 
@@ -35,21 +46,21 @@
35
46
  - Added `legend` props for better customization more info refer to chart js legend documentation for additional
36
47
  options
37
48
 
38
- ## 1.1.13
49
+ ## 1.1.13 - 2024-05-09
39
50
 
40
51
  ### Feature
41
52
 
42
53
  - `FmIcon`
43
54
  - Upgrade Material Icons version(Fill)
44
55
 
45
- ## 1.1.12
56
+ ## 1.1.12 - 2024-05-09
46
57
 
47
58
  ### Bug fixes
48
59
 
49
60
  - `FmButton`
50
61
  - Fix the icon will be missing when it is clicked because there is no fill variant for the icon
51
62
 
52
- ## 1.1.11
63
+ ## 1.1.11 - 2024-05-09
53
64
 
54
65
  ### Feature
55
66
 
@@ -61,7 +72,7 @@
61
72
  - `FmStepperField`
62
73
  - Fix the issue that the stepper field will not be disabled when it be set to disabled
63
74
 
64
- ## 1.1.10
75
+ ## 1.1.10 - 2024-05-08
65
76
 
66
77
  ### Feature
67
78
 
@@ -70,7 +81,7 @@
70
81
  - `FmTable`
71
82
  - Allow user assign className for row
72
83
 
73
- ## 1.1.9
84
+ ## 1.1.9 - 2024-05-06
74
85
 
75
86
  ### Feature
76
87
 
@@ -53,7 +53,7 @@ type FmBarProp = {
53
53
  * hide the legend
54
54
  * this will have priority over any other
55
55
  */
56
- legend?: LegendOptions<'bar'>;
56
+ legend?: Partial<LegendOptions<'bar'>>;
57
57
  };
58
58
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FmBarProp>, {
59
59
  name: undefined;
@@ -74,7 +74,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
74
74
  hideYAxis: undefined;
75
75
  legend: undefined;
76
76
  }>>>, {
77
- legend: LegendOptions<"bar">;
77
+ legend: Partial<LegendOptions<"bar">>;
78
78
  name: string;
79
79
  paragraph: string;
80
80
  transpose: boolean;
@@ -52,7 +52,7 @@ type FmLineProp = {
52
52
  * hide the legend
53
53
  * this will have priority over any other
54
54
  */
55
- legend?: LegendOptions<'line'>;
55
+ legend?: Partial<LegendOptions<'line'>>;
56
56
  };
57
57
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FmLineProp>, {
58
58
  name: undefined;
@@ -69,7 +69,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
69
69
  hideYAxis: undefined;
70
70
  legend: undefined;
71
71
  }>>>, {
72
- legend: LegendOptions<"line">;
72
+ legend: Partial<LegendOptions<"line">>;
73
73
  name: string;
74
74
  paragraph: string;
75
75
  transpose: boolean;
@@ -32,7 +32,7 @@ type FmPieProp = {
32
32
  /**
33
33
  * legends
34
34
  */
35
- legend?: LegendOptions<'doughnut'>;
35
+ legend?: Partial<LegendOptions<'doughnut'>>;
36
36
  /**
37
37
  * text
38
38
  * the text in the middle for doughnut
@@ -73,7 +73,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
73
73
  maintainAspectRatio: boolean;
74
74
  percentage: undefined;
75
75
  }>>>, {
76
- legend: LegendOptions<"doughnut">;
76
+ legend: Partial<LegendOptions<"doughnut">>;
77
77
  text: string;
78
78
  name: string;
79
79
  paragraph: string;
@@ -0,0 +1,66 @@
1
+ export interface FmScorecardProps {
2
+ title: string;
3
+ value: string | number;
4
+ compareValue?: string | number;
5
+ description: string;
6
+ hideCompare?: boolean;
7
+ hideLineChart?: boolean;
8
+ sparklineData?: {
9
+ dimension: string[];
10
+ datasets: {
11
+ name: string;
12
+ values: number[];
13
+ }[];
14
+ };
15
+ }
16
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FmScorecardProps>, {
17
+ value: number;
18
+ compareValue: undefined;
19
+ hideCompare: boolean;
20
+ hideLineChart: boolean;
21
+ sparklineData: undefined;
22
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FmScorecardProps>, {
23
+ value: number;
24
+ compareValue: undefined;
25
+ hideCompare: boolean;
26
+ hideLineChart: boolean;
27
+ sparklineData: undefined;
28
+ }>>>, {
29
+ value: string | number;
30
+ compareValue: string | number;
31
+ hideCompare: boolean;
32
+ hideLineChart: boolean;
33
+ sparklineData: {
34
+ dimension: string[];
35
+ datasets: {
36
+ name: string;
37
+ values: number[];
38
+ }[];
39
+ };
40
+ }, {}>, {
41
+ title?(_: {}): any;
42
+ compare?(_: {}): any;
43
+ }>;
44
+ export default _default;
45
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
46
+ type __VLS_TypePropsToRuntimeProps<T> = {
47
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
48
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
49
+ } : {
50
+ type: import('vue').PropType<T[K]>;
51
+ required: true;
52
+ };
53
+ };
54
+ type __VLS_WithDefaults<P, D> = {
55
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
56
+ default: D[K];
57
+ }> : P[K];
58
+ };
59
+ type __VLS_Prettify<T> = {
60
+ [K in keyof T]: T[K];
61
+ } & {};
62
+ type __VLS_WithTemplateSlots<T, S> = T & {
63
+ new (): {
64
+ $slots: S;
65
+ };
66
+ };
@@ -1298,7 +1298,7 @@ export declare const components: {
1298
1298
  FmLineChart: {
1299
1299
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
1300
1300
  legend: {
1301
- type: import("vue").PropType<import("chart.js").LegendOptions<"line">>;
1301
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"line">>>;
1302
1302
  default: undefined;
1303
1303
  };
1304
1304
  name: {
@@ -1337,7 +1337,7 @@ export declare const components: {
1337
1337
  };
1338
1338
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
1339
1339
  legend: {
1340
- type: import("vue").PropType<import("chart.js").LegendOptions<"line">>;
1340
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"line">>>;
1341
1341
  default: undefined;
1342
1342
  };
1343
1343
  name: {
@@ -1375,7 +1375,7 @@ export declare const components: {
1375
1375
  default: undefined;
1376
1376
  };
1377
1377
  }>>, {
1378
- legend: import("chart.js").LegendOptions<"line">;
1378
+ legend: Partial<import("chart.js").LegendOptions<"line">>;
1379
1379
  name: string;
1380
1380
  paragraph: string;
1381
1381
  transpose: boolean;
@@ -1390,7 +1390,7 @@ export declare const components: {
1390
1390
  Defaults: {};
1391
1391
  }, Readonly<import("vue").ExtractPropTypes<{
1392
1392
  legend: {
1393
- type: import("vue").PropType<import("chart.js").LegendOptions<"line">>;
1393
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"line">>>;
1394
1394
  default: undefined;
1395
1395
  };
1396
1396
  name: {
@@ -1428,7 +1428,7 @@ export declare const components: {
1428
1428
  default: undefined;
1429
1429
  };
1430
1430
  }>>, {}, {}, {}, {}, {
1431
- legend: import("chart.js").LegendOptions<"line">;
1431
+ legend: Partial<import("chart.js").LegendOptions<"line">>;
1432
1432
  name: string;
1433
1433
  paragraph: string;
1434
1434
  transpose: boolean;
@@ -1440,7 +1440,7 @@ export declare const components: {
1440
1440
  __isSuspense?: undefined;
1441
1441
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1442
1442
  legend: {
1443
- type: import("vue").PropType<import("chart.js").LegendOptions<"line">>;
1443
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"line">>>;
1444
1444
  default: undefined;
1445
1445
  };
1446
1446
  name: {
@@ -1478,7 +1478,7 @@ export declare const components: {
1478
1478
  default: undefined;
1479
1479
  };
1480
1480
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
1481
- legend: import("chart.js").LegendOptions<"line">;
1481
+ legend: Partial<import("chart.js").LegendOptions<"line">>;
1482
1482
  name: string;
1483
1483
  paragraph: string;
1484
1484
  transpose: boolean;
@@ -1492,7 +1492,7 @@ export declare const components: {
1492
1492
  FmPieChart: {
1493
1493
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
1494
1494
  legend: {
1495
- type: import("vue").PropType<import("chart.js").LegendOptions<"doughnut">>;
1495
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"doughnut">>>;
1496
1496
  default: undefined;
1497
1497
  };
1498
1498
  text: {
@@ -1537,7 +1537,7 @@ export declare const components: {
1537
1537
  };
1538
1538
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
1539
1539
  legend: {
1540
- type: import("vue").PropType<import("chart.js").LegendOptions<"doughnut">>;
1540
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"doughnut">>>;
1541
1541
  default: undefined;
1542
1542
  };
1543
1543
  text: {
@@ -1581,7 +1581,7 @@ export declare const components: {
1581
1581
  default: undefined;
1582
1582
  };
1583
1583
  }>>, {
1584
- legend: import("chart.js").LegendOptions<"doughnut">;
1584
+ legend: Partial<import("chart.js").LegendOptions<"doughnut">>;
1585
1585
  text: string;
1586
1586
  name: string;
1587
1587
  paragraph: string;
@@ -1598,7 +1598,7 @@ export declare const components: {
1598
1598
  Defaults: {};
1599
1599
  }, Readonly<import("vue").ExtractPropTypes<{
1600
1600
  legend: {
1601
- type: import("vue").PropType<import("chart.js").LegendOptions<"doughnut">>;
1601
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"doughnut">>>;
1602
1602
  default: undefined;
1603
1603
  };
1604
1604
  text: {
@@ -1642,7 +1642,7 @@ export declare const components: {
1642
1642
  default: undefined;
1643
1643
  };
1644
1644
  }>>, {}, {}, {}, {}, {
1645
- legend: import("chart.js").LegendOptions<"doughnut">;
1645
+ legend: Partial<import("chart.js").LegendOptions<"doughnut">>;
1646
1646
  text: string;
1647
1647
  name: string;
1648
1648
  paragraph: string;
@@ -1656,7 +1656,7 @@ export declare const components: {
1656
1656
  __isSuspense?: undefined;
1657
1657
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1658
1658
  legend: {
1659
- type: import("vue").PropType<import("chart.js").LegendOptions<"doughnut">>;
1659
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"doughnut">>>;
1660
1660
  default: undefined;
1661
1661
  };
1662
1662
  text: {
@@ -1700,7 +1700,7 @@ export declare const components: {
1700
1700
  default: undefined;
1701
1701
  };
1702
1702
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
1703
- legend: import("chart.js").LegendOptions<"doughnut">;
1703
+ legend: Partial<import("chart.js").LegendOptions<"doughnut">>;
1704
1704
  text: string;
1705
1705
  name: string;
1706
1706
  paragraph: string;
@@ -1716,7 +1716,7 @@ export declare const components: {
1716
1716
  FmBarChart: {
1717
1717
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
1718
1718
  legend: {
1719
- type: import("vue").PropType<import("chart.js").LegendOptions<"bar">>;
1719
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"bar">>>;
1720
1720
  default: undefined;
1721
1721
  };
1722
1722
  name: {
@@ -1757,7 +1757,7 @@ export declare const components: {
1757
1757
  };
1758
1758
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
1759
1759
  legend: {
1760
- type: import("vue").PropType<import("chart.js").LegendOptions<"bar">>;
1760
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"bar">>>;
1761
1761
  default: undefined;
1762
1762
  };
1763
1763
  name: {
@@ -1797,7 +1797,7 @@ export declare const components: {
1797
1797
  default: undefined;
1798
1798
  };
1799
1799
  }>>, {
1800
- legend: import("chart.js").LegendOptions<"bar">;
1800
+ legend: Partial<import("chart.js").LegendOptions<"bar">>;
1801
1801
  name: string;
1802
1802
  paragraph: string;
1803
1803
  transpose: boolean;
@@ -1814,7 +1814,7 @@ export declare const components: {
1814
1814
  Defaults: {};
1815
1815
  }, Readonly<import("vue").ExtractPropTypes<{
1816
1816
  legend: {
1817
- type: import("vue").PropType<import("chart.js").LegendOptions<"bar">>;
1817
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"bar">>>;
1818
1818
  default: undefined;
1819
1819
  };
1820
1820
  name: {
@@ -1854,7 +1854,7 @@ export declare const components: {
1854
1854
  default: undefined;
1855
1855
  };
1856
1856
  }>>, {}, {}, {}, {}, {
1857
- legend: import("chart.js").LegendOptions<"bar">;
1857
+ legend: Partial<import("chart.js").LegendOptions<"bar">>;
1858
1858
  name: string;
1859
1859
  paragraph: string;
1860
1860
  transpose: boolean;
@@ -1868,7 +1868,7 @@ export declare const components: {
1868
1868
  __isSuspense?: undefined;
1869
1869
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1870
1870
  legend: {
1871
- type: import("vue").PropType<import("chart.js").LegendOptions<"bar">>;
1871
+ type: import("vue").PropType<Partial<import("chart.js").LegendOptions<"bar">>>;
1872
1872
  default: undefined;
1873
1873
  };
1874
1874
  name: {
@@ -1908,7 +1908,7 @@ export declare const components: {
1908
1908
  default: undefined;
1909
1909
  };
1910
1910
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
1911
- legend: import("chart.js").LegendOptions<"bar">;
1911
+ legend: Partial<import("chart.js").LegendOptions<"bar">>;
1912
1912
  name: string;
1913
1913
  paragraph: string;
1914
1914
  transpose: boolean;
@@ -1921,6 +1921,204 @@ export declare const components: {
1921
1921
  title?(_: {}): any;
1922
1922
  };
1923
1923
  });
1924
+ FmScorecard: {
1925
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
1926
+ title: {
1927
+ type: import("vue").PropType<string>;
1928
+ required: true;
1929
+ };
1930
+ value: {
1931
+ type: import("vue").PropType<string | number>;
1932
+ required: true;
1933
+ default: number;
1934
+ };
1935
+ description: {
1936
+ type: import("vue").PropType<string>;
1937
+ required: true;
1938
+ };
1939
+ compareValue: {
1940
+ type: import("vue").PropType<string | number>;
1941
+ default: undefined;
1942
+ };
1943
+ hideCompare: {
1944
+ type: import("vue").PropType<boolean>;
1945
+ default: boolean;
1946
+ };
1947
+ hideLineChart: {
1948
+ type: import("vue").PropType<boolean>;
1949
+ default: boolean;
1950
+ };
1951
+ sparklineData: {
1952
+ type: import("vue").PropType<{
1953
+ dimension: string[];
1954
+ datasets: {
1955
+ name: string;
1956
+ values: number[];
1957
+ }[];
1958
+ }>;
1959
+ default: undefined;
1960
+ };
1961
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
1962
+ title: {
1963
+ type: import("vue").PropType<string>;
1964
+ required: true;
1965
+ };
1966
+ value: {
1967
+ type: import("vue").PropType<string | number>;
1968
+ required: true;
1969
+ default: number;
1970
+ };
1971
+ description: {
1972
+ type: import("vue").PropType<string>;
1973
+ required: true;
1974
+ };
1975
+ compareValue: {
1976
+ type: import("vue").PropType<string | number>;
1977
+ default: undefined;
1978
+ };
1979
+ hideCompare: {
1980
+ type: import("vue").PropType<boolean>;
1981
+ default: boolean;
1982
+ };
1983
+ hideLineChart: {
1984
+ type: import("vue").PropType<boolean>;
1985
+ default: boolean;
1986
+ };
1987
+ sparklineData: {
1988
+ type: import("vue").PropType<{
1989
+ dimension: string[];
1990
+ datasets: {
1991
+ name: string;
1992
+ values: number[];
1993
+ }[];
1994
+ }>;
1995
+ default: undefined;
1996
+ };
1997
+ }>>, {
1998
+ value: string | number;
1999
+ compareValue: string | number;
2000
+ hideCompare: boolean;
2001
+ hideLineChart: boolean;
2002
+ sparklineData: {
2003
+ dimension: string[];
2004
+ datasets: {
2005
+ name: string;
2006
+ values: number[];
2007
+ }[];
2008
+ };
2009
+ }, true, {}, {}, {
2010
+ P: {};
2011
+ B: {};
2012
+ D: {};
2013
+ C: {};
2014
+ M: {};
2015
+ Defaults: {};
2016
+ }, Readonly<import("vue").ExtractPropTypes<{
2017
+ title: {
2018
+ type: import("vue").PropType<string>;
2019
+ required: true;
2020
+ };
2021
+ value: {
2022
+ type: import("vue").PropType<string | number>;
2023
+ required: true;
2024
+ default: number;
2025
+ };
2026
+ description: {
2027
+ type: import("vue").PropType<string>;
2028
+ required: true;
2029
+ };
2030
+ compareValue: {
2031
+ type: import("vue").PropType<string | number>;
2032
+ default: undefined;
2033
+ };
2034
+ hideCompare: {
2035
+ type: import("vue").PropType<boolean>;
2036
+ default: boolean;
2037
+ };
2038
+ hideLineChart: {
2039
+ type: import("vue").PropType<boolean>;
2040
+ default: boolean;
2041
+ };
2042
+ sparklineData: {
2043
+ type: import("vue").PropType<{
2044
+ dimension: string[];
2045
+ datasets: {
2046
+ name: string;
2047
+ values: number[];
2048
+ }[];
2049
+ }>;
2050
+ default: undefined;
2051
+ };
2052
+ }>>, {}, {}, {}, {}, {
2053
+ value: string | number;
2054
+ compareValue: string | number;
2055
+ hideCompare: boolean;
2056
+ hideLineChart: boolean;
2057
+ sparklineData: {
2058
+ dimension: string[];
2059
+ datasets: {
2060
+ name: string;
2061
+ values: number[];
2062
+ }[];
2063
+ };
2064
+ }>;
2065
+ __isFragment?: undefined;
2066
+ __isTeleport?: undefined;
2067
+ __isSuspense?: undefined;
2068
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
2069
+ title: {
2070
+ type: import("vue").PropType<string>;
2071
+ required: true;
2072
+ };
2073
+ value: {
2074
+ type: import("vue").PropType<string | number>;
2075
+ required: true;
2076
+ default: number;
2077
+ };
2078
+ description: {
2079
+ type: import("vue").PropType<string>;
2080
+ required: true;
2081
+ };
2082
+ compareValue: {
2083
+ type: import("vue").PropType<string | number>;
2084
+ default: undefined;
2085
+ };
2086
+ hideCompare: {
2087
+ type: import("vue").PropType<boolean>;
2088
+ default: boolean;
2089
+ };
2090
+ hideLineChart: {
2091
+ type: import("vue").PropType<boolean>;
2092
+ default: boolean;
2093
+ };
2094
+ sparklineData: {
2095
+ type: import("vue").PropType<{
2096
+ dimension: string[];
2097
+ datasets: {
2098
+ name: string;
2099
+ values: number[];
2100
+ }[];
2101
+ }>;
2102
+ default: undefined;
2103
+ };
2104
+ }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
2105
+ value: string | number;
2106
+ compareValue: string | number;
2107
+ hideCompare: boolean;
2108
+ hideLineChart: boolean;
2109
+ sparklineData: {
2110
+ dimension: string[];
2111
+ datasets: {
2112
+ name: string;
2113
+ values: number[];
2114
+ }[];
2115
+ };
2116
+ }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2117
+ $slots: {
2118
+ title?(_: {}): any;
2119
+ compare?(_: {}): any;
2120
+ };
2121
+ });
1924
2122
  FmCheckbox: {
1925
2123
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
1926
2124
  label: {
@@ -1 +1 @@
1
- import{importShared as f,__tla as E}from"./__federation_fn_import-DzgSLNaX.js";import{_ as $,__tla as H}from"./FmStepHeader.vue_vue_type_script_setup_true_lang-CiaEF6pI.js";import i,{__tla as L}from"./__federation_expose_FmButton-CAYP6Mjn.js";import T,{__tla as Q}from"./__federation_expose_FmMenu-CnlHIVAr.js";import U,{__tla as j}from"./__federation_expose_FmMenuItem-C-4fyGr_.js";import q,{__tla as D}from"./__federation_expose_FmBottomSheet-DNHgxUKd.js";import G,{__tla as J}from"./__federation_expose_FmList-Dbtp97Y6.js";import K,{__tla as O}from"./__federation_expose_FmListItem-DbgBKnt5.js";let M,R=Promise.all([(()=>{try{return E}catch{}})(),(()=>{try{return H}catch{}})(),(()=>{try{return L}catch{}})(),(()=>{try{return Q}catch{}})(),(()=>{try{return j}catch{}})(),(()=>{try{return D}catch{}})(),(()=>{try{return J}catch{}})(),(()=>{try{return O}catch{}})()]).then(async()=>{let h,o,n,r,m,d,v,_,u,s,b,A,S,w,x,C,I,g;({defineComponent:h}=await f("vue")),{openBlock:o,createBlock:n,createCommentVNode:r,renderSlot:m,createVNode:d,renderList:v,Fragment:_,createElementBlock:u,withCtx:s,createElementVNode:b,Teleport:A}=await f("vue"),S={class:"bg-white flex fm-corner-radius-md gap-4 items-center px-24 py-16"},w={class:"flex gap-4 items-center xs:hidden"},x={key:1,class:"hidden xs:flex"},C={class:"absolute bottom-16 hidden right-16 xs:inline"},{computed:I,ref:g}=await f("vue"),M=h({__name:"FmPageHead",props:{title:{default:()=>""},description:{default:()=>""},backButton:{type:Boolean,default:()=>!1},actions:{default:()=>[]},zIndexForBottomSheet:{default:void 0}},emits:["click:back","click:action"],setup(B,{emit:P}){const z=B,c=P,e=I(()=>{const l=[...z.actions],a=l.findIndex(p=>p.isPrimary),t=l[a],[k,F,...V]=l.filter((p,N)=>N!==a);return{primaryAction:t,firstSecondaryAction:k,secondSecondaryAction:F,showMoreSecondary:V,bottomSheetActions:l.filter(p=>!p.isPrimary),fabActions:l.filter(p=>p.isPrimary)}}),y=g(!1);return(l,a)=>(o(),u("div",S,[l.backButton?(o(),n(i,{key:0,type:"button",size:"md",variant:"tertiary",icon:"arrow_back","icon-color":"black",onClick:a[0]||(a[0]=t=>c("click:back"))})):r("",!0),m(l.$slots,"prepend"),d($,{class:"flex-grow",title:l.title,description:l.description,"title-bold":""},null,8,["title","description"]),b("div",w,[e.value.firstSecondaryAction?(o(),n(i,{key:0,label:e.value.firstSecondaryAction.label,"prepend-icon":e.value.firstSecondaryAction.prependIcon,"append-icon":e.value.firstSecondaryAction.appendIcon,type:"button",variant:"tertiary",size:"md",onClick:a[1]||(a[1]=t=>c("click:action",e.value.firstSecondaryAction.value))},null,8,["label","prepend-icon","append-icon"])):r("",!0),e.value.secondSecondaryAction?(o(),n(i,{key:1,label:e.value.secondSecondaryAction.label,"prepend-icon":e.value.secondSecondaryAction.prependIcon,"append-icon":e.value.secondSecondaryAction.appendIcon,type:"button",variant:"tertiary",size:"md",onClick:a[2]||(a[2]=t=>c("click:action",e.value.secondSecondaryAction.value))},null,8,["label","prepend-icon","append-icon"])):r("",!0),e.value.showMoreSecondary.length>1?(o(),n(T,{key:2},{"menu-button":s(()=>[d(i,{label:"More","append-icon":"expand_more","icon-color":"black",type:"button",variant:"tertiary",size:"md"})]),default:s(()=>[(o(!0),u(_,null,v(e.value.showMoreSecondary,t=>(o(),n(U,{key:t.value,label:t.label,icon:t.prependIcon,onClick:k=>c("click:action",t.value)},null,8,["label","icon","onClick"]))),128))]),_:1})):e.value.showMoreSecondary.length===1?(o(),n(i,{key:3,label:e.value.showMoreSecondary[0].label,"prepend-icon":e.value.showMoreSecondary[0].prependIcon,"append-icon":e.value.showMoreSecondary[0].appendIcon,type:"button",variant:"tertiary",size:"md",onClick:a[3]||(a[3]=t=>c("click:action",e.value.showMoreSecondary[0].value))},null,8,["label","prepend-icon","append-icon"])):r("",!0),e.value.primaryAction?(o(),n(i,{key:4,label:e.value.primaryAction.label,"prepend-icon":e.value.primaryAction.prependIcon,"append-icon":e.value.primaryAction.appendIcon,type:"button",variant:"primary",size:"md",onClick:a[4]||(a[4]=t=>c("click:action",e.value.primaryAction.value))},null,8,["label","prepend-icon","append-icon"])):r("",!0)]),e.value.bottomSheetActions.length>0?(o(),u("div",x,[d(i,{type:"button",size:"md",variant:"tertiary",icon:"more_vert","icon-color":"black",onClick:a[5]||(a[5]=t=>y.value=!0)})])):r("",!0),m(l.$slots,"append"),(o(),n(A,{to:"body"},[d(q,{"model-value":y.value,"onUpdate:modelValue":a[6]||(a[6]=t=>y.value=t),"dismiss-away":"","z-index":z.zIndexForBottomSheet},{default:s(()=>[d(G,null,{default:s(()=>[(o(!0),u(_,null,v(e.value.bottomSheetActions,t=>(o(),n(K,{key:t.value,class:"hover:bg-fm-color-neutral-gray-100",label:t.label,onClick:k=>{c("click:action",t.value),y.value=!1}},null,8,["label","onClick"]))),128))]),_:1})]),_:1},8,["model-value","z-index"]),b("div",C,[e.value.primaryAction?(o(),n(i,{key:0,class:"fm-shadow-light-100",label:e.value.primaryAction.label,"prepend-icon":e.value.primaryAction.prependIcon,"append-icon":e.value.primaryAction.appendIcon,type:"button",variant:"fab",size:"md",onClick:a[7]||(a[7]=t=>c("click:action",e.value.primaryAction.value))},null,8,["label","prepend-icon","append-icon"])):r("",!0)])]))]))}})});export{M as _,R as __tla};
1
+ import{importShared as f,__tla as E}from"./__federation_fn_import-DzgSLNaX.js";import{_ as $,__tla as H}from"./FmStepHeader.vue_vue_type_script_setup_true_lang-CiaEF6pI.js";import i,{__tla as L}from"./__federation_expose_FmButton-CAYP6Mjn.js";import T,{__tla as Q}from"./__federation_expose_FmMenu-CnlHIVAr.js";import U,{__tla as j}from"./__federation_expose_FmMenuItem-C-4fyGr_.js";import q,{__tla as D}from"./__federation_expose_FmBottomSheet-CJKpk6QB.js";import G,{__tla as J}from"./__federation_expose_FmList-Dbtp97Y6.js";import K,{__tla as O}from"./__federation_expose_FmListItem-DbgBKnt5.js";let M,R=Promise.all([(()=>{try{return E}catch{}})(),(()=>{try{return H}catch{}})(),(()=>{try{return L}catch{}})(),(()=>{try{return Q}catch{}})(),(()=>{try{return j}catch{}})(),(()=>{try{return D}catch{}})(),(()=>{try{return J}catch{}})(),(()=>{try{return O}catch{}})()]).then(async()=>{let h,o,n,r,m,d,v,_,u,s,b,A,S,w,x,C,I,g;({defineComponent:h}=await f("vue")),{openBlock:o,createBlock:n,createCommentVNode:r,renderSlot:m,createVNode:d,renderList:v,Fragment:_,createElementBlock:u,withCtx:s,createElementVNode:b,Teleport:A}=await f("vue"),S={class:"bg-white flex fm-corner-radius-md gap-4 items-center px-24 py-16"},w={class:"flex gap-4 items-center xs:hidden"},x={key:1,class:"hidden xs:flex"},C={class:"absolute bottom-16 hidden right-16 xs:inline"},{computed:I,ref:g}=await f("vue"),M=h({__name:"FmPageHead",props:{title:{default:()=>""},description:{default:()=>""},backButton:{type:Boolean,default:()=>!1},actions:{default:()=>[]},zIndexForBottomSheet:{default:void 0}},emits:["click:back","click:action"],setup(B,{emit:P}){const z=B,c=P,e=I(()=>{const l=[...z.actions],a=l.findIndex(p=>p.isPrimary),t=l[a],[k,F,...V]=l.filter((p,N)=>N!==a);return{primaryAction:t,firstSecondaryAction:k,secondSecondaryAction:F,showMoreSecondary:V,bottomSheetActions:l.filter(p=>!p.isPrimary),fabActions:l.filter(p=>p.isPrimary)}}),y=g(!1);return(l,a)=>(o(),u("div",S,[l.backButton?(o(),n(i,{key:0,type:"button",size:"md",variant:"tertiary",icon:"arrow_back","icon-color":"black",onClick:a[0]||(a[0]=t=>c("click:back"))})):r("",!0),m(l.$slots,"prepend"),d($,{class:"flex-grow",title:l.title,description:l.description,"title-bold":""},null,8,["title","description"]),b("div",w,[e.value.firstSecondaryAction?(o(),n(i,{key:0,label:e.value.firstSecondaryAction.label,"prepend-icon":e.value.firstSecondaryAction.prependIcon,"append-icon":e.value.firstSecondaryAction.appendIcon,type:"button",variant:"tertiary",size:"md",onClick:a[1]||(a[1]=t=>c("click:action",e.value.firstSecondaryAction.value))},null,8,["label","prepend-icon","append-icon"])):r("",!0),e.value.secondSecondaryAction?(o(),n(i,{key:1,label:e.value.secondSecondaryAction.label,"prepend-icon":e.value.secondSecondaryAction.prependIcon,"append-icon":e.value.secondSecondaryAction.appendIcon,type:"button",variant:"tertiary",size:"md",onClick:a[2]||(a[2]=t=>c("click:action",e.value.secondSecondaryAction.value))},null,8,["label","prepend-icon","append-icon"])):r("",!0),e.value.showMoreSecondary.length>1?(o(),n(T,{key:2},{"menu-button":s(()=>[d(i,{label:"More","append-icon":"expand_more","icon-color":"black",type:"button",variant:"tertiary",size:"md"})]),default:s(()=>[(o(!0),u(_,null,v(e.value.showMoreSecondary,t=>(o(),n(U,{key:t.value,label:t.label,icon:t.prependIcon,onClick:k=>c("click:action",t.value)},null,8,["label","icon","onClick"]))),128))]),_:1})):e.value.showMoreSecondary.length===1?(o(),n(i,{key:3,label:e.value.showMoreSecondary[0].label,"prepend-icon":e.value.showMoreSecondary[0].prependIcon,"append-icon":e.value.showMoreSecondary[0].appendIcon,type:"button",variant:"tertiary",size:"md",onClick:a[3]||(a[3]=t=>c("click:action",e.value.showMoreSecondary[0].value))},null,8,["label","prepend-icon","append-icon"])):r("",!0),e.value.primaryAction?(o(),n(i,{key:4,label:e.value.primaryAction.label,"prepend-icon":e.value.primaryAction.prependIcon,"append-icon":e.value.primaryAction.appendIcon,type:"button",variant:"primary",size:"md",onClick:a[4]||(a[4]=t=>c("click:action",e.value.primaryAction.value))},null,8,["label","prepend-icon","append-icon"])):r("",!0)]),e.value.bottomSheetActions.length>0?(o(),u("div",x,[d(i,{type:"button",size:"md",variant:"tertiary",icon:"more_vert","icon-color":"black",onClick:a[5]||(a[5]=t=>y.value=!0)})])):r("",!0),m(l.$slots,"append"),(o(),n(A,{to:"body"},[d(q,{"model-value":y.value,"onUpdate:modelValue":a[6]||(a[6]=t=>y.value=t),"dismiss-away":"","z-index":z.zIndexForBottomSheet},{default:s(()=>[d(G,null,{default:s(()=>[(o(!0),u(_,null,v(e.value.bottomSheetActions,t=>(o(),n(K,{key:t.value,class:"hover:bg-fm-color-neutral-gray-100",label:t.label,onClick:k=>{c("click:action",t.value),y.value=!1}},null,8,["label","onClick"]))),128))]),_:1})]),_:1},8,["model-value","z-index"]),b("div",C,[e.value.primaryAction?(o(),n(i,{key:0,class:"fm-shadow-light-100",label:e.value.primaryAction.label,"prepend-icon":e.value.primaryAction.prependIcon,"append-icon":e.value.primaryAction.appendIcon,type:"button",variant:"fab",size:"md",onClick:a[7]||(a[7]=t=>c("click:action",e.value.primaryAction.value))},null,8,["label","prepend-icon","append-icon"])):r("",!0)])]))]))}})});export{M as _,R as __tla};
@@ -0,0 +1 @@
1
+ import{importShared as H,__tla as ke}from"./__federation_fn_import-DzgSLNaX.js";import{u as Ae,__tla as Ce}from"./useProxiedModel-tBxtSc23.js";import Be,{__tla as Pe}from"./__federation_expose_FmIcon-Cl5V-PdJ.js";import{__tla as Te}from"./index-C0owMrfd.js";import{bG as Ye,bA as Y,bn as $e,bB as j,y as Ie,C as Ve,bq as ze,bx as Me,bK as Xe,x as je,bz as L,ad as x,ba as Le}from"./runtime-core.esm-bundler-CYLvGb8-.js";import{F as De,__tla as Fe}from"./FmOverlay-DgS2AGto.js";import{_ as Ge}from"./_plugin-vue_export-helper-DlAUqK2U.js";let pe,Ne=Promise.all([(()=>{try{return ke}catch{}})(),(()=>{try{return Ce}catch{}})(),(()=>{try{return Pe}catch{}})(),(()=>{try{return Te}catch{}})(),(()=>{try{return Fe}catch{}})()]).then(async()=>{function fe(e){return ze()?(Me(e),!0):!1}function O(e){return typeof e=="function"?e():Xe(e)}const he=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const me=Object.prototype.toString,ye=e=>me.call(e)==="[object Object]",$=()=>{};function _e(e){return e||je()}function we(...e){if(e.length!==1)return Ye(...e);const r=e[0];return typeof r=="function"?Y($e(()=>({get:r,set:$}))):j(r)}function be(e,r=!0,l){_e()?Ie(e,l):r?e():Ve(e)}function Se(e){var r;const l=O(e);return(r=l==null?void 0:l.$el)!=null?r:l}const W=he?window:void 0;function g(...e){let r,l,c,s;if(typeof e[0]=="string"||Array.isArray(e[0])?([l,c,s]=e,r=W):[r,l,c,s]=e,!r)return $;Array.isArray(l)||(l=[l]),Array.isArray(c)||(c=[c]);const f=[],w=()=>{f.forEach(a=>a()),f.length=0},b=(a,o,v,p)=>(a.addEventListener(o,v,p),()=>a.removeEventListener(o,v,p)),d=Le(()=>[Se(r),O(s)],([a,o])=>{if(w(),!a)return;const v=ye(o)?{...o}:o;f.push(...l.flatMap(p=>c.map(E=>b(a,p,E,v))))},{immediate:!0,flush:"post"}),i=()=>{d(),w()};return fe(i),i}function xe(e,r={}){const l=we(e),{threshold:c=50,onSwipe:s,onSwipeEnd:f,onSwipeStart:w,disableTextSelect:b=!1}=r,d=L({x:0,y:0}),i=(n,t)=>{d.x=n,d.y=t},a=L({x:0,y:0}),o=(n,t)=>{a.x=n,a.y=t},v=x(()=>d.x-a.x),p=x(()=>d.y-a.y),{max:E,abs:m}=Math,C=x(()=>E(m(v.value),m(p.value))>=c),S=j(!1),B=j(!1),P=x(()=>C.value?m(v.value)>m(p.value)?v.value>0?"left":"right":p.value>0?"up":"down":"none"),y=n=>{var t,u,h;const M=n.buttons===0,X=n.buttons===1;return(h=(u=(t=r.pointerTypes)==null?void 0:t.includes(n.pointerType))!=null?u:M||X)!=null?h:!0},T=[g(e,"pointerdown",n=>{if(!y(n))return;B.value=!0;const t=n.target;t==null||t.setPointerCapture(n.pointerId);const{clientX:u,clientY:h}=n;i(u,h),o(u,h),w==null||w(n)}),g(e,"pointermove",n=>{if(!y(n)||!B.value)return;const{clientX:t,clientY:u}=n;o(t,u),!S.value&&C.value&&(S.value=!0),S.value&&(s==null||s(n))}),g(e,"pointerup",n=>{y(n)&&(S.value&&(f==null||f(n,P.value)),B.value=!1,S.value=!1)})];be(()=>{var n,t,u,h,M,X,de,ve;(t=(n=l.value)==null?void 0:n.style)==null||t.setProperty("touch-action","none"),b&&((h=(u=l.value)==null?void 0:u.style)==null||h.setProperty("-webkit-user-select","none"),(X=(M=l.value)==null?void 0:M.style)==null||X.setProperty("-ms-user-select","none"),(ve=(de=l.value)==null?void 0:de.style)==null||ve.setProperty("user-select","none"))});const R=()=>T.forEach(n=>n());return{isSwiping:Y(S),direction:Y(P),posStart:Y(d),posEnd:Y(a),distanceX:v,distanceY:p,stop:R}}function ge(e,r={}){const{threshold:l=50,onSwipe:c,onSwipeEnd:s,onSwipeStart:f,passive:w=!0,window:b=W}=r,d=L({x:0,y:0}),i=L({x:0,y:0}),a=x(()=>d.x-i.x),o=x(()=>d.y-i.y),{max:v,abs:p}=Math,E=x(()=>v(p(a.value),p(o.value))>=l),m=j(!1),C=x(()=>E.value?p(a.value)>p(o.value)?a.value>0?"left":"right":o.value>0?"up":"down":"none"),S=t=>[t.touches[0].clientX,t.touches[0].clientY],B=(t,u)=>{d.x=t,d.y=u},P=(t,u)=>{i.x=t,i.y=u};let y;const T=Ee(b==null?void 0:b.document);w?y=T?{passive:!0}:{capture:!1}:y=T?{passive:!1,capture:!0}:{capture:!0};const R=t=>{m.value&&(s==null||s(t,C.value)),m.value=!1},n=[g(e,"touchstart",t=>{if(t.touches.length!==1)return;y.capture&&!y.passive&&t.preventDefault();const[u,h]=S(t);B(u,h),P(u,h),f==null||f(t)},y),g(e,"touchmove",t=>{if(t.touches.length!==1)return;const[u,h]=S(t);P(u,h),!m.value&&E.value&&(m.value=!0),m.value&&(c==null||c(t))},y),g(e,["touchend","touchcancel"],R,y)];return{isPassiveEventSupported:T,isSwiping:m,direction:C,coordsStart:d,coordsEnd:i,lengthX:a,lengthY:o,stop:()=>n.forEach(t=>t())}}function Ee(e){if(!e)return!1;let r=!1;const l={get passive(){return r=!0,!1}};return e.addEventListener("x",$,l),e.removeEventListener("x",$),r}let q,k,_,K,I,J,A,D,F,Q,G,V,N,U,Z,ee,te,ae,oe,ne,le,re,se,ue,z,ie,ce;({defineComponent:q}=await H("vue")),{renderSlot:k,createElementVNode:_,unref:K,createVNode:I,toDisplayString:J,openBlock:A,createElementBlock:D,createCommentVNode:F,normalizeStyle:Q,Transition:G,withCtx:V,createBlock:N,Teleport:U,pushScopeId:Z,popScopeId:ee}=await H("vue"),te=e=>(Z("data-v-87584695"),e=e(),ee(),e),ae=te(()=>_("div",{class:"fm-bottom-sheet--gesture--stick"},null,-1)),oe=[ae],ne={class:"fm-bottom-sheet--header"},le={class:"fm-bottom-sheet--header--content"},re={key:0},se={class:"overflow-y-auto"},ue={class:"flex gap-8 items-center"},{ref:z,watch:ie}=await H("vue"),ce=q({__name:"FmBottomSheet",props:{header:{default:""},modelValue:{type:Boolean,default:!1},dismissAway:{type:Boolean,default:!1},zIndex:{default:void 0}},emits:["update:modelValue"],setup(e){const r=e,l=z(null),c=z(null),s=z(0),{direction:f,distanceY:w}=xe(l,{threshold:0,onSwipe(){f.value==="down"&&(s.value=Math.min(w.value,0))},onSwipeEnd(){var o;const a=(o=c.value)==null?void 0:o.clientHeight;a&&s.value<-a/2?i.value=!1:s.value=0}}),{direction:b,lengthY:d}=ge(l,{passive:!1,threshold:0,onSwipe(){b.value==="down"&&(s.value=Math.min(d.value,0))},onSwipeEnd(){var o;const a=(o=c.value)==null?void 0:o.clientHeight;a&&s.value<-a/2?i.value=!1:s.value=0}}),i=Ae(r,"modelValue");return ie(i,a=>{a&&(s.value=0)}),(a,o)=>(A(),D("div",null,[_("div",{onClick:o[0]||(o[0]=v=>i.value=!0)},[k(a.$slots,"bottom-sheet-button",{},void 0,!0)]),(A(),N(U,{to:"body"},[I(G,null,{default:V(()=>[K(i)?(A(),N(De,{key:0,"dismiss-away":r.dismissAway,"z-index":r.zIndex,onClose:o[2]||(o[2]=v=>i.value=!1)},{default:V(()=>[I(G,{appear:"",name:"slide"},{default:V(()=>[_("div",{ref_key:"wrapperRef",ref:c,style:Q({bottom:`${s.value}px`}),class:"fm-bottom-sheet"},[_("div",{ref_key:"gestureRef",ref:l,class:"fm-bottom-sheet--gesture"},oe,512),_("div",ne,[_("div",le,[_("div",{class:"flex h-24 items-center justify-center w-24",onClick:o[1]||(o[1]=v=>i.value=!1)},[I(Be,{name:"arrow_back"})]),k(a.$slots,"bottom-sheet-header",{},()=>[a.header?(A(),D("div",re,J(a.header),1)):F("",!0)],!0)])]),_("div",se,[k(a.$slots,"default",{},void 0,!0)]),_("div",ue,[k(a.$slots,"bottom-sheet-footer",{},void 0,!0)])],4)]),_:3})]),_:3},8,["dismiss-away","z-index"])):F("",!0)]),_:3})]))]))}}),pe=Ge(ce,[["__scopeId","data-v-87584695"]])});export{Ne as __tla,pe as default};
@@ -1 +1 @@
1
- .fm-bottom-sheet[data-v-755fe033]{position:absolute;bottom:0;left:50%;--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));max-height:calc(100% - 64px);width:100%;max-width:480px;display:flex;flex-direction:column;background-color:var(--fm-color-neutral-white);border-top-left-radius:32px;border-top-right-radius:32px}.fm-bottom-sheet--gesture[data-v-755fe033]{padding-top:16px;padding-bottom:16px;display:flex;align-items:center;justify-content:center}.fm-bottom-sheet--gesture--stick[data-v-755fe033]{height:4px;width:32px;border-radius:9999px;background-color:var(--fm-color-neutral-gray-300)}.fm-bottom-sheet--header[data-v-755fe033]{display:flex;align-items:center;justify-content:space-between;padding-top:4px;padding-bottom:4px;font-size:1.375rem;font-weight:800;line-height:1.5rem;letter-spacing:.015em;text-decoration-line:none;color:var(--fm-color-neutral-gray-500)}.fm-bottom-sheet--header--content[data-v-755fe033]{display:flex;align-items:center;justify-content:center}.fm-bottom-sheet--header--content[data-v-755fe033]>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(8px * var(--tw-space-x-reverse));margin-left:calc(8px * calc(1 - var(--tw-space-x-reverse)))}.fm-bottom-sheet--header--content[data-v-755fe033]{padding:8px 16px}.slide-enter-from[data-v-755fe033],.slide-leave-to[data-v-755fe033]{--tw-translate-y: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.slide-enter-active[data-v-755fe033],.slide-leave-active[data-v-755fe033]{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.v-enter-active[data-v-755fe033],.v-leave-active[data-v-755fe033]{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.v-enter-from[data-v-755fe033],.v-leave-to[data-v-755fe033]{opacity:0}
1
+ .fm-bottom-sheet[data-v-87584695]{position:absolute;bottom:0;left:50%;--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));max-height:calc(100% - 64px);width:100%;max-width:480px;display:flex;flex-direction:column;background-color:var(--fm-color-neutral-white);border-top-left-radius:32px;border-top-right-radius:32px}.fm-bottom-sheet--gesture[data-v-87584695]{padding-top:16px;padding-bottom:16px;display:flex;align-items:center;justify-content:center}.fm-bottom-sheet--gesture--stick[data-v-87584695]{height:4px;width:32px;border-radius:9999px;background-color:var(--fm-color-neutral-gray-300)}.fm-bottom-sheet--header[data-v-87584695]{display:flex;align-items:center;justify-content:space-between;padding-top:4px;padding-bottom:4px;font-size:1.375rem;font-weight:800;line-height:1.5rem;letter-spacing:.015em;text-decoration-line:none;color:var(--fm-color-neutral-gray-500)}.fm-bottom-sheet--header--content[data-v-87584695]{display:flex;align-items:center;justify-content:center}.fm-bottom-sheet--header--content[data-v-87584695]>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(8px * var(--tw-space-x-reverse));margin-left:calc(8px * calc(1 - var(--tw-space-x-reverse)))}.fm-bottom-sheet--header--content[data-v-87584695]{padding:8px 16px}.slide-enter-from[data-v-87584695],.slide-leave-to[data-v-87584695]{--tw-translate-y: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.slide-enter-active[data-v-87584695],.slide-leave-active[data-v-87584695]{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.v-enter-active[data-v-87584695],.v-leave-active[data-v-87584695]{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.v-enter-from[data-v-87584695],.v-leave-to[data-v-87584695]{opacity:0}
@@ -1 +1 @@
1
- import{_ as t,__tla as a}from"./FmPageHead.vue_vue_type_script_setup_true_lang-QAHgpFH0.js";let _=Promise.all([(()=>{try{return a}catch{}})()]).then(async()=>{});export{_ as __tla,t as default};
1
+ import{_ as t,__tla as a}from"./FmPageHead.vue_vue_type_script_setup_true_lang-Dip7Os-W.js";let _=Promise.all([(()=>{try{return a}catch{}})()]).then(async()=>{});export{_ as __tla,t as default};