@economic/taco 2.55.0-settings.3 → 2.55.0-settings.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.
package/dist/taco.css CHANGED
@@ -1,190 +1,184 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- @layer base {
6
- *,
7
- *::before,
8
- *::after {
9
- box-sizing: border-box;
10
- }
11
-
12
- html {
13
- @apply font-display h-screen;
14
- -moz-osx-font-smoothing: grayscale;
15
- -webkit-font-smoothing: antialiased;
16
- }
17
-
18
- body {
19
- @apply h-screen bg-white text-sm leading-5 text-black;
20
- }
21
-
22
- blockquote,
23
- dl,
24
- dd,
25
- hr,
26
- figure,
27
- p,
28
- pre,
29
- ol,
30
- ul,
31
- h1,
32
- h2,
33
- h3,
34
- h4,
35
- h5,
36
- h6 {
37
- max-width: 100ch;
38
- }
39
-
40
- blockquote,
41
- dl,
42
- dd,
43
- hr,
44
- figure,
45
- p,
46
- pre,
47
- ol,
48
- ul {
49
- @apply mb-10;
50
- }
51
-
52
- ol ol,
53
- ul ul,
54
- ol ul,
55
- ul ol {
56
- @apply mb-0;
57
- }
1
+ *,
2
+ *::before,
3
+ *::after {
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ html {
8
+ @apply font-display h-screen;
9
+ -moz-osx-font-smoothing: grayscale;
10
+ -webkit-font-smoothing: antialiased;
11
+ }
12
+
13
+ body {
14
+ @apply h-screen bg-white text-sm leading-5 text-black;
15
+ }
16
+
17
+ blockquote,
18
+ dl,
19
+ dd,
20
+ hr,
21
+ figure,
22
+ p,
23
+ pre,
24
+ ol,
25
+ ul,
26
+ h1,
27
+ h2,
28
+ h3,
29
+ h4,
30
+ h5,
31
+ h6 {
32
+ max-width: 100ch;
33
+ }
34
+
35
+ blockquote,
36
+ dl,
37
+ dd,
38
+ hr,
39
+ figure,
40
+ p,
41
+ pre,
42
+ ol,
43
+ ul {
44
+ @apply mb-10;
45
+ }
46
+
47
+ ol ol,
48
+ ul ul,
49
+ ol ul,
50
+ ul ol {
51
+ @apply mb-0;
52
+ }
58
53
 
59
- ul.list-disc,
60
- ul.list-decimal,
61
- ul.list-circle,
62
- ol.list-disc,
63
- ol.list-decimal,
64
- ol.list-circle {
65
- @apply pl-4;
66
- }
54
+ ul.list-disc,
55
+ ul.list-decimal,
56
+ ul.list-circle,
57
+ ol.list-disc,
58
+ ol.list-decimal,
59
+ ol.list-circle {
60
+ @apply pl-4;
61
+ }
67
62
 
68
- dt {
69
- @apply font-bold;
70
- }
63
+ dt {
64
+ @apply font-bold;
65
+ }
71
66
 
72
- blockquote {
73
- @apply pl-8;
74
- }
67
+ blockquote {
68
+ @apply pl-8;
69
+ }
75
70
 
76
- hr {
77
- @apply bg-grey-300 my-5 flex h-px border-none;
78
- }
71
+ hr {
72
+ @apply bg-grey-300 my-5 flex h-px border-none;
73
+ }
79
74
 
80
- h1,
81
- h2,
82
- h3,
83
- h4,
84
- h5,
85
- h6 {
86
- @apply font-normal;
87
- }
75
+ h1,
76
+ h2,
77
+ h3,
78
+ h4,
79
+ h5,
80
+ h6 {
81
+ @apply font-normal;
82
+ }
88
83
 
89
- h1 {
90
- @apply mb-5 text-3xl;
91
- }
84
+ h1 {
85
+ @apply mb-5 text-3xl;
86
+ }
92
87
 
93
- h2 {
94
- @apply mb-2 text-2xl;
95
- }
88
+ h2 {
89
+ @apply mb-2 text-2xl;
90
+ }
96
91
 
97
- h3 {
98
- @apply mb-2 text-xl;
99
- }
92
+ h3 {
93
+ @apply mb-2 text-xl;
94
+ }
100
95
 
101
- h4 {
102
- @apply mb-1 text-base font-bold;
103
- }
96
+ h4 {
97
+ @apply mb-1 text-base font-bold;
98
+ }
104
99
 
105
- h5 {
106
- @apply mb-1 text-sm font-bold;
107
- }
100
+ h5 {
101
+ @apply mb-1 text-sm font-bold;
102
+ }
108
103
 
109
- h6 {
110
- @apply mb-1 text-xs font-bold;
111
- }
104
+ h6 {
105
+ @apply mb-1 text-xs font-bold;
106
+ }
112
107
 
113
- b,
114
- strong {
115
- @apply font-bold;
116
- }
108
+ b,
109
+ strong {
110
+ @apply font-bold;
111
+ }
117
112
 
118
- a {
119
- @apply text-blue-500 no-underline;
120
- }
113
+ a {
114
+ @apply text-blue-500 no-underline;
115
+ }
121
116
 
122
- a:hover,
123
- a:focus {
124
- @apply text-blue-300;
125
- }
117
+ a:hover,
118
+ a:focus {
119
+ @apply text-blue-300;
120
+ }
126
121
 
127
- a:active {
128
- @apply text-blue-700;
129
- }
122
+ a:active {
123
+ @apply text-blue-700;
124
+ }
130
125
 
131
- button::-moz-focus-inner {
132
- @apply border-none;
133
- }
126
+ button::-moz-focus-inner {
127
+ @apply border-none;
128
+ }
134
129
 
135
- input[type='search']::-webkit-search-decoration,
136
- input[type='search']::-webkit-search-cancel-button,
137
- input[type='search']::-webkit-search-results-button,
138
- input[type='search']::-webkit-search-results-decoration {
139
- @apply block cursor-pointer;
140
- }
130
+ input[type='search']::-webkit-search-decoration,
131
+ input[type='search']::-webkit-search-cancel-button,
132
+ input[type='search']::-webkit-search-results-button,
133
+ input[type='search']::-webkit-search-results-decoration {
134
+ @apply block cursor-pointer;
135
+ }
141
136
 
142
- input[type='search']::-webkit-search-cancel-button {
143
- -webkit-appearance: none;
144
- }
137
+ input[type='search']::-webkit-search-cancel-button {
138
+ -webkit-appearance: none;
139
+ }
145
140
 
146
- table.yt-table {
147
- @apply focus:yt-focus flex flex-col focus:rounded-sm;
148
- }
149
- table.yt-table thead.yt-table__head tr.yt-table__row {
150
- @apply border-grey-100 flex h-auto min-h-[2.5rem] w-full select-none border-b-2 border-t-0 font-bold;
151
- }
141
+ table.yt-table {
142
+ @apply focus:yt-focus flex flex-col focus:rounded-sm;
143
+ }
144
+ table.yt-table thead.yt-table__head tr.yt-table__row {
145
+ @apply border-grey-100 flex h-auto min-h-[2.5rem] w-full select-none border-b-2 border-t-0 font-bold;
146
+ }
152
147
 
153
- table.yt-table thead.yt-table__head tr.yt-table__row th.yt-table__cell {
154
- @apply text-grey-700 flex flex-1 justify-center truncate p-2 text-center align-middle hover:text-black;
155
- }
148
+ table.yt-table thead.yt-table__head tr.yt-table__row th.yt-table__cell {
149
+ @apply text-grey-700 flex flex-1 justify-center truncate p-2 text-center align-middle hover:text-black;
150
+ }
156
151
 
157
- table.yt-table tbody.yt-table__body tr.yt-table__row {
158
- @apply border-grey-100 hover:bg-grey-100 flex min-h-[2.5rem] border-b;
159
- }
152
+ table.yt-table tbody.yt-table__body tr.yt-table__row {
153
+ @apply border-grey-100 hover:bg-grey-100 flex min-h-[2.5rem] border-b;
154
+ }
160
155
 
161
- table.yt-table tbody.yt-table__body tr.yt-table__row td.yt-table__cell {
162
- @apply flex-1 truncate p-2 text-center align-middle;
163
- }
156
+ table.yt-table tbody.yt-table__body tr.yt-table__row td.yt-table__cell {
157
+ @apply flex-1 truncate p-2 text-center align-middle;
158
+ }
164
159
 
165
- [aria-hidden] > [data-taco='hanger'] {
166
- @apply invisible;
167
- }
160
+ [aria-hidden] > [data-taco='hanger'] {
161
+ @apply invisible;
162
+ }
168
163
 
169
- /*
164
+ /*
170
165
  * While the dialog is open, all elements are aria-hidden except for the dialog content. This ensures that the
171
166
  * print document contains only the dialog content.
172
167
  */
173
- [aria-hidden='true'] {
174
- @apply print:!hidden;
175
- }
168
+ [aria-hidden='true'] {
169
+ @apply print:!hidden;
170
+ }
176
171
 
177
- .wcag-transparent {
178
- @apply bg-black/[0.08] text-black;
179
- }
172
+ .wcag-transparent {
173
+ @apply bg-black/[0.08] text-black;
174
+ }
180
175
 
181
- @keyframes fade-in {
182
- from {
183
- @apply opacity-0;
184
- }
185
- to {
186
- @apply opacity-100;
187
- }
176
+ @keyframes fade-in {
177
+ from {
178
+ @apply opacity-0;
179
+ }
180
+ to {
181
+ @apply opacity-100;
188
182
  }
189
183
  }
190
184
  .recharts-cartesian-axis line,
package/dist/taco.d.ts CHANGED
@@ -2150,22 +2150,22 @@ declare type MenuButtonProps = {
2150
2150
  onClick: () => void;
2151
2151
  };
2152
2152
 
2153
- declare type MenuCheckboxItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2153
+ export declare type MenuCheckboxItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2154
2154
  disabled?: boolean;
2155
2155
  checked: boolean;
2156
2156
  onChange: (checked: boolean | 'indeterminate') => void;
2157
2157
  };
2158
2158
 
2159
- declare type MenuContentProps = Omit<DropdownMenuPrimitive.DropdownMenuContentProps, 'children' | 'side'> & {
2159
+ export declare type MenuContentProps = Omit<DropdownMenuPrimitive.DropdownMenuContentProps, 'children' | 'side'> & {
2160
2160
  align?: Align;
2161
2161
  children: React_2.ReactNode;
2162
2162
  /** Set the position of the Menu relative to its trigger. Default value is `bottom` */
2163
2163
  placement?: Placement;
2164
2164
  };
2165
2165
 
2166
- declare type MenuHeaderProps = React_2.HTMLAttributes<HTMLDivElement>;
2166
+ export declare type MenuHeaderProps = React_2.HTMLAttributes<HTMLDivElement>;
2167
2167
 
2168
- declare type MenuItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2168
+ export declare type MenuItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2169
2169
  dialog?: (props: Partial<DialogProps>) => JSX.Element;
2170
2170
  disabled?: boolean;
2171
2171
  icon?: IconName;
@@ -2175,7 +2175,7 @@ declare type MenuItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSel
2175
2175
  subMenu?: any;
2176
2176
  };
2177
2177
 
2178
- declare type MenuLinkItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2178
+ export declare type MenuLinkItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2179
2179
  disabled?: boolean;
2180
2180
  icon?: IconName;
2181
2181
  href: string;
@@ -2198,13 +2198,13 @@ declare type MenuRadioGroupItemProps = RadioGroupItemProps<HTMLDivElement>;
2198
2198
 
2199
2199
  declare type MenuRadioGroupProps = RadioGroupProps;
2200
2200
 
2201
- declare type MenuSeparatorProps = React_2.HTMLAttributes<HTMLDivElement>;
2201
+ export declare type MenuSeparatorProps = React_2.HTMLAttributes<HTMLDivElement>;
2202
2202
 
2203
- declare type MenuSubMenuProps = Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps, 'children' | 'side'> & {
2203
+ export declare type MenuSubMenuProps = Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps, 'children' | 'side'> & {
2204
2204
  children: React_2.ReactNode;
2205
2205
  };
2206
2206
 
2207
- declare type MenuTriggerProps = Omit<React_2.HTMLAttributes<HTMLButtonElement>, 'children'> & {
2207
+ export declare type MenuTriggerProps = Omit<React_2.HTMLAttributes<HTMLButtonElement>, 'children'> & {
2208
2208
  children: React_2.ReactElement;
2209
2209
  };
2210
2210
 
@@ -3734,6 +3734,13 @@ export declare type TreeviewItemProps = default_2.LinkHTMLAttributes<HTMLAnchorE
3734
3734
 
3735
3735
  export declare type TreeviewProps = default_2.HTMLAttributes<HTMLDivElement>;
3736
3736
 
3737
+ export declare const Truncate: ({ children, tooltip }: TruncateProps) => default_2.JSX.Element;
3738
+
3739
+ export declare type TruncateProps = {
3740
+ children: default_2.ReactElement;
3741
+ tooltip: string;
3742
+ };
3743
+
3737
3744
  export declare interface UncontrolledCheckboxProps extends CheckboxBaseProps {
3738
3745
  checked?: never;
3739
3746
  onChange?: never;
package/dist/taco.js CHANGED
@@ -12972,23 +12972,24 @@ const filterData = (data, value = "") => {
12972
12972
  };
12973
12973
  const debouncer = debounce$1((f2) => f2(), 200);
12974
12974
  const convertToInputValue = (value) => String(value ?? "");
12975
- const useCombobox = ({
12976
- "aria-label": ariaLabel,
12977
- "aria-labelledby": ariaLabelledBy,
12978
- data: unfilteredData = [],
12979
- defaultValue: defaultValue2,
12980
- disabled,
12981
- id: nativeId,
12982
- inline,
12983
- loading: __,
12984
- onChange,
12985
- onClick,
12986
- onKeyDown,
12987
- onSearch,
12988
- readOnly,
12989
- value,
12990
- ...props
12991
- }, ref) => {
12975
+ const useCombobox = (props, ref) => {
12976
+ const {
12977
+ "aria-label": ariaLabel,
12978
+ "aria-labelledby": ariaLabelledBy,
12979
+ data: unfilteredData = [],
12980
+ defaultValue: defaultValue2,
12981
+ disabled,
12982
+ id: nativeId,
12983
+ inline,
12984
+ loading: __,
12985
+ onChange,
12986
+ onClick,
12987
+ onKeyDown,
12988
+ onSearch,
12989
+ readOnly,
12990
+ value,
12991
+ ...otherProps
12992
+ } = props;
12992
12993
  const inputRef = useMergedRef(ref);
12993
12994
  const buttonRef = React.useRef(null);
12994
12995
  const listRef = React.useRef(null);
@@ -13173,13 +13174,14 @@ const useCombobox = ({
13173
13174
  role: "combobox"
13174
13175
  };
13175
13176
  const input = {
13176
- ...props,
13177
+ ...otherProps,
13177
13178
  "aria-controls": listId,
13178
13179
  // Indicates that the autocomplete behavior of the text input is to suggest a list of possible values in a popup and that the suggestions
13179
13180
  // are related to the string that is present in the textbox
13180
13181
  "aria-autocomplete": "list",
13181
13182
  // Enables assistive technologies to know which element the application regards as focused while DOM focus remains on the input element
13182
13183
  "aria-activedescendant": currentIndex !== void 0 && data[currentIndex] ? getId(listId, String(data[currentIndex].value)) : void 0,
13184
+ "aria-label": ariaLabel,
13183
13185
  "aria-labelledby": ariaLabelledBy,
13184
13186
  disabled,
13185
13187
  onBlur: !disabled && !readOnly ? handleInputBlur : void 0,
@@ -89744,6 +89746,7 @@ export {
89744
89746
  Tour,
89745
89747
  TourStep,
89746
89748
  Treeview,
89749
+ Truncate,
89747
89750
  VisuallyHidden,
89748
89751
  WindowedTable,
89749
89752
  convertRowIndexPathToNumberArray,