@driveflux/beam 2.0.0 → 2.0.2

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.
Files changed (43) hide show
  1. package/dist/badge/Badge.d.ts +1 -1
  2. package/dist/box/Box.d.ts +1 -1
  3. package/dist/box/Box.d.ts.map +1 -1
  4. package/dist/button/Button.d.ts +1 -1
  5. package/dist/button/Button.js +12 -124
  6. package/dist/carousel/Carousel.js +58 -281
  7. package/dist/carousel/Carousel.js.map +1 -1
  8. package/dist/command/command.js.map +1 -1
  9. package/dist/datepicker/DatePicker.d.ts +2 -2
  10. package/dist/datepicker/DatePicker.d.ts.map +1 -1
  11. package/dist/datepicker/DatePicker.js.map +1 -1
  12. package/dist/datepicker/DatePickerPopover.js +35 -207
  13. package/dist/datepicker/DatePickerPopover.js.map +1 -1
  14. package/dist/divider/Divider.js +3 -63
  15. package/dist/divider/Divider.js.map +1 -1
  16. package/dist/drawer/index.js.map +1 -1
  17. package/dist/dropdown/Dropdown.js +26 -212
  18. package/dist/dropdown/Dropdown.js.map +1 -1
  19. package/dist/field-wrapper/FieldWrapper.js.map +1 -1
  20. package/dist/icons/IconDot.js.map +1 -1
  21. package/dist/input-select/InputSelect.js.map +1 -1
  22. package/dist/input-select/InputSelect.stories.d.ts.map +1 -1
  23. package/dist/popover/popover.js.map +1 -1
  24. package/dist/scroll-area/scroll-area.js +5 -113
  25. package/dist/scroll-area/scroll-area.js.map +1 -1
  26. package/dist/search-input-select/SearchInputSelect.js.map +1 -1
  27. package/dist/select/Select.js.map +1 -1
  28. package/dist/select/Select.stories.d.ts.map +1 -1
  29. package/dist/styles.css +1 -5
  30. package/dist/tabs/Tabs.js +9 -128
  31. package/dist/tabs/Tabs.js.map +1 -1
  32. package/dist/text/Text.d.ts +2 -2
  33. package/dist/text/Text.d.ts.map +1 -1
  34. package/package.json +4 -4
  35. package/dist/icons/IconCollapseAll.d.ts +0 -8
  36. package/dist/icons/IconCollapseAll.d.ts.map +0 -1
  37. package/dist/icons/IconCollapseAll.js +0 -97
  38. package/dist/icons/IconExpandAll.d.ts +0 -8
  39. package/dist/icons/IconExpandAll.d.ts.map +0 -1
  40. package/dist/icons/IconExpandAll.js +0 -97
  41. package/dist/icons/IconReport.d.ts +0 -9
  42. package/dist/icons/IconReport.d.ts.map +0 -1
  43. package/dist/icons/IconReport.js +0 -92
package/dist/tabs/Tabs.js CHANGED
@@ -1,141 +1,22 @@
1
1
  'use client';
2
- function _define_property(obj, key, value) {
3
- if (key in obj) {
4
- Object.defineProperty(obj, key, {
5
- value: value,
6
- enumerable: true,
7
- configurable: true,
8
- writable: true
9
- });
10
- } else {
11
- obj[key] = value;
12
- }
13
- return obj;
14
- }
15
- function _object_spread(target) {
16
- for(var i = 1; i < arguments.length; i++){
17
- var source = arguments[i] != null ? arguments[i] : {};
18
- var ownKeys = Object.keys(source);
19
- if (typeof Object.getOwnPropertySymbols === "function") {
20
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
21
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
22
- }));
23
- }
24
- ownKeys.forEach(function(key) {
25
- _define_property(target, key, source[key]);
26
- });
27
- }
28
- return target;
29
- }
30
- function ownKeys(object, enumerableOnly) {
31
- var keys = Object.keys(object);
32
- if (Object.getOwnPropertySymbols) {
33
- var symbols = Object.getOwnPropertySymbols(object);
34
- if (enumerableOnly) {
35
- symbols = symbols.filter(function(sym) {
36
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
37
- });
38
- }
39
- keys.push.apply(keys, symbols);
40
- }
41
- return keys;
42
- }
43
- function _object_spread_props(target, source) {
44
- source = source != null ? source : {};
45
- if (Object.getOwnPropertyDescriptors) {
46
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
47
- } else {
48
- ownKeys(Object(source)).forEach(function(key) {
49
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
50
- });
51
- }
52
- return target;
53
- }
54
- function _object_without_properties(source, excluded) {
55
- if (source == null) return {};
56
- var target = _object_without_properties_loose(source, excluded);
57
- var key, i;
58
- if (Object.getOwnPropertySymbols) {
59
- var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
60
- for(i = 0; i < sourceSymbolKeys.length; i++){
61
- key = sourceSymbolKeys[i];
62
- if (excluded.indexOf(key) >= 0) continue;
63
- if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
64
- target[key] = source[key];
65
- }
66
- }
67
- return target;
68
- }
69
- function _object_without_properties_loose(source, excluded) {
70
- if (source == null) return {};
71
- var target = {};
72
- var sourceKeys = Object.keys(source);
73
- var key, i;
74
- for(i = 0; i < sourceKeys.length; i++){
75
- key = sourceKeys[i];
76
- if (excluded.indexOf(key) >= 0) continue;
77
- target[key] = source[key];
78
- }
79
- return target;
80
- }
81
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
82
3
  import * as TabsPrimitive from '@radix-ui/react-tabs';
83
4
  import * as React from 'react';
84
5
  import HStack from '../hstack/HStack';
85
6
  import { cn } from '../utils';
86
- var Tabs = function(_param) {
87
- var defaultValue = _param.defaultValue, props = _object_without_properties(_param, [
88
- "defaultValue"
89
- ]);
90
- var _React_Children_toArray_find_props_children_, _React_Children_toArray_find_props_children, _React_Children_toArray_find_props, _React_Children_toArray_find;
91
- var firstTabValue = (_React_Children_toArray_find = React.Children.toArray(props.children).find(function(child) {
92
- var _child_type;
93
- return(// @ts-expect-error
94
- /*#__PURE__*/ React.isValidElement(child) && (child === null || child === void 0 ? void 0 : (_child_type = child.type) === null || _child_type === void 0 ? void 0 : _child_type.displayName) === 'TabsList');
95
- })) === null || _React_Children_toArray_find === void 0 ? void 0 : (_React_Children_toArray_find_props = _React_Children_toArray_find.props) === null || _React_Children_toArray_find_props === void 0 ? void 0 : (_React_Children_toArray_find_props_children = _React_Children_toArray_find_props.children) === null || _React_Children_toArray_find_props_children === void 0 ? void 0 : (_React_Children_toArray_find_props_children_ = _React_Children_toArray_find_props_children[0]) === null || _React_Children_toArray_find_props_children_ === void 0 ? void 0 : _React_Children_toArray_find_props_children_.props.value;
96
- return /*#__PURE__*/ _jsx(TabsPrimitive.Root, _object_spread({
97
- defaultValue: defaultValue || firstTabValue
98
- }, props));
7
+ const Tabs = ({ defaultValue, ...props }) => {
8
+ const firstTabValue = React.Children.toArray(props.children).find((child) =>
9
+ // @ts-expect-error
10
+ React.isValidElement(child) && child?.type?.displayName === 'TabsList')?.props?.children?.[0]?.props.value;
11
+ return (_jsx(TabsPrimitive.Root, { defaultValue: defaultValue || firstTabValue, ...props }));
99
12
  };
100
- var TabsList = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
101
- var className = _param.className, props = _object_without_properties(_param, [
102
- "className"
103
- ]);
104
- return /*#__PURE__*/ _jsx(TabsPrimitive.List, _object_spread({
105
- ref: ref,
106
- className: cn('inline-flex items-center w-full text-black text-[12px] border-b border-b-primary1', className)
107
- }, props));
108
- });
13
+ const TabsList = React.forwardRef(({ className, ...props }, ref) => (_jsx(TabsPrimitive.List, { ref: ref, className: cn('inline-flex items-center w-full text-black text-[12px] border-b border-b-primary1', className), ...props })));
109
14
  TabsList.displayName = TabsPrimitive.List.displayName;
110
15
  // name of tab list
111
- var Tab = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
112
- var className = _param.className, icon = _param.icon, props = _object_without_properties(_param, [
113
- "className",
114
- "icon"
115
- ]);
116
- return /*#__PURE__*/ _jsx(TabsPrimitive.Trigger, _object_spread_props(_object_spread({
117
- ref: ref,
118
- className: cn('inline-flex items-center uppercase tracking-[2px] h-[32px] px-[16px] font-normal whitespace-nowrap', 'border-b-[1px] border-primary2 -mb-[1px]', 'data-[state=active]:font-bold data-[state=active]:border-b-[2px] data-[state=active]:border-b-[#50c8e8]', className)
119
- }, props), {
120
- children: /*#__PURE__*/ _jsxs(HStack, {
121
- className: 'gap-2',
122
- children: [
123
- icon,
124
- props.children
125
- ]
126
- })
127
- }));
128
- });
16
+ const Tab = React.forwardRef(({ className, icon, ...props }, ref) => (_jsx(TabsPrimitive.Trigger, { ref: ref, className: cn('inline-flex items-center uppercase tracking-wider h-[32px] px-[16px] font-normal whitespace-nowrap', 'border-b border-primary2 -mb-px', 'data-[state=active]:font-bold data-[state=active]:border-b-2 data-[state=active]:border-b-[#50c8e8]', className), ...props, children: _jsxs(HStack, { className: 'gap-2', children: [icon, props.children] }) })));
129
17
  Tab.displayName = TabsPrimitive.Trigger.displayName;
130
18
  // the content for each tab
131
- var TabsContent = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
132
- var className = _param.className, props = _object_without_properties(_param, [
133
- "className"
134
- ]);
135
- return /*#__PURE__*/ _jsx(TabsPrimitive.Content, _object_spread({
136
- ref: ref,
137
- className: cn('mt-2 ring-offset-white focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-zinc-950 focus-visible:ring-offset-2 dark:ring-offset-zinc-950 dark:focus-visible:ring-zinc-300', className)
138
- }, props));
139
- });
19
+ const TabsContent = React.forwardRef(({ className, ...props }, ref) => (_jsx(TabsPrimitive.Content, { ref: ref, className: cn('mt-2 ring-offset-white focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-zinc-950 focus-visible:ring-offset-2 dark:ring-offset-zinc-950 dark:focus-visible:ring-zinc-300', className), ...props })));
140
20
  TabsContent.displayName = TabsPrimitive.Content.displayName;
141
21
  export { Tab, Tabs, TabsContent, TabsList };
22
+ //# sourceMappingURL=Tabs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Tabs.js","sourceRoot":"","sources":["../../src/tabs/Tabs.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;;AAEZ,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAA;AAErD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,MAAM,MAAM,kBAAkB,CAAA;AACrC,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAA;AAW7B,MAAM,IAAI,GAAG,CAAC,EAAE,YAAY,EAAE,GAAG,KAAK,EAAa,EAAE,EAAE;IACtD,MAAM,aAAa,GAAG,KAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,CAChE,CAAC,KAAK,EAAE,EAAE;IACT,mBAAmB;IACnB,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,IAAI,KAAK,EAAE,IAAI,EAAE,WAAW,KAAK,UAAU,CAEvE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,CAAA;IAEpC,OAAO,CACN,KAAC,aAAa,CAAC,IAAI,IAClB,YAAY,EAAE,YAAY,IAAI,aAAa,KACvC,KAAK,GACR,CACF,CAAA;AACF,CAAC,CAAA;AAED,MAAM,QAAQ,GAAG,KAAK,CAAC,UAAU,CAG/B,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACnC,KAAC,aAAa,CAAC,IAAI,IAClB,GAAG,EAAE,GAAG,EACR,SAAS,EAAE,EAAE,CACZ,mFAAmF,EACnF,SAAS,CACT,KACG,KAAK,GACR,CACF,CAAC,CAAA;AACF,QAAQ,CAAC,WAAW,GAAG,aAAa,CAAC,IAAI,CAAC,WAAW,CAAA;AAErD,mBAAmB;AACnB,MAAM,GAAG,GAAG,KAAK,CAAC,UAAU,CAG1B,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACzC,KAAC,aAAa,CAAC,OAAO,IACrB,GAAG,EAAE,GAAG,EACR,SAAS,EAAE,EAAE,CACZ,oGAAoG,EACpG,0CAA0C,EAC1C,yGAAyG,EACzG,SAAS,CACT,KACG,KAAK,YAET,MAAC,MAAM,IAAC,SAAS,EAAE,OAAO,aACxB,IAAI,EACJ,KAAK,CAAC,QAAQ,IACP,GACc,CACxB,CAAC,CAAA;AACF,GAAG,CAAC,WAAW,GAAG,aAAa,CAAC,OAAO,CAAC,WAAW,CAAA;AAEnD,2BAA2B;AAC3B,MAAM,WAAW,GAAG,KAAK,CAAC,UAAU,CAGlC,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACnC,KAAC,aAAa,CAAC,OAAO,IACrB,GAAG,EAAE,GAAG,EACR,SAAS,EAAE,EAAE,CACZ,2LAA2L,EAC3L,SAAS,CACT,KACG,KAAK,GACR,CACF,CAAC,CAAA;AACF,WAAW,CAAC,WAAW,GAAG,aAAa,CAAC,OAAO,CAAC,WAAW,CAAA;AAE3D,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAA"}
1
+ {"version":3,"file":"Tabs.js","sourceRoot":"","sources":["../../src/tabs/Tabs.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;;AAEZ,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAA;AAErD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,MAAM,MAAM,kBAAkB,CAAA;AACrC,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAA;AAW7B,MAAM,IAAI,GAAG,CAAC,EAAE,YAAY,EAAE,GAAG,KAAK,EAAa,EAAE,EAAE;IACtD,MAAM,aAAa,GAAG,KAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,IAAI,CAChE,CAAC,KAAK,EAAE,EAAE;IACT,mBAAmB;IACnB,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,IAAI,KAAK,EAAE,IAAI,EAAE,WAAW,KAAK,UAAU,CAEvE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,CAAA;IAEpC,OAAO,CACN,KAAC,aAAa,CAAC,IAAI,IAClB,YAAY,EAAE,YAAY,IAAI,aAAa,KACvC,KAAK,GACR,CACF,CAAA;AACF,CAAC,CAAA;AAED,MAAM,QAAQ,GAAG,KAAK,CAAC,UAAU,CAG/B,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACnC,KAAC,aAAa,CAAC,IAAI,IAClB,GAAG,EAAE,GAAG,EACR,SAAS,EAAE,EAAE,CACZ,mFAAmF,EACnF,SAAS,CACT,KACG,KAAK,GACR,CACF,CAAC,CAAA;AACF,QAAQ,CAAC,WAAW,GAAG,aAAa,CAAC,IAAI,CAAC,WAAW,CAAA;AAErD,mBAAmB;AACnB,MAAM,GAAG,GAAG,KAAK,CAAC,UAAU,CAG1B,CAAC,EAAE,SAAS,EAAE,IAAI,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACzC,KAAC,aAAa,CAAC,OAAO,IACrB,GAAG,EAAE,GAAG,EACR,SAAS,EAAE,EAAE,CACZ,oGAAoG,EACpG,iCAAiC,EACjC,qGAAqG,EACrG,SAAS,CACT,KACG,KAAK,YAET,MAAC,MAAM,IAAC,SAAS,EAAE,OAAO,aACxB,IAAI,EACJ,KAAK,CAAC,QAAQ,IACP,GACc,CACxB,CAAC,CAAA;AACF,GAAG,CAAC,WAAW,GAAG,aAAa,CAAC,OAAO,CAAC,WAAW,CAAA;AAEnD,2BAA2B;AAC3B,MAAM,WAAW,GAAG,KAAK,CAAC,UAAU,CAGlC,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACnC,KAAC,aAAa,CAAC,OAAO,IACrB,GAAG,EAAE,GAAG,EACR,SAAS,EAAE,EAAE,CACZ,6LAA6L,EAC7L,SAAS,CACT,KACG,KAAK,GACR,CACF,CAAC,CAAA;AACF,WAAW,CAAC,WAAW,GAAG,aAAa,CAAC,OAAO,CAAC,WAAW,CAAA;AAE3D,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAA"}
@@ -3,8 +3,8 @@ export interface TextProps extends React.HTMLAttributes<HTMLDivElement> {
3
3
  /**
4
4
  * @default 'p'
5
5
  */
6
- as?: keyof React.ReactHTML;
7
- type?: keyof React.ReactHTML;
6
+ as?: keyof React.JSX.IntrinsicElements;
7
+ type?: keyof React.JSX.IntrinsicElements;
8
8
  }
9
9
  declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLDivElement>>;
10
10
  export default Text;
@@ -1 +1 @@
1
- {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../src/text/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,MAAM,WAAW,SAAU,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACtE;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC,SAAS,CAAA;IAC1B,IAAI,CAAC,EAAE,MAAM,KAAK,CAAC,SAAS,CAAA;CAC5B;AAED,QAAA,MAAM,IAAI,kFAiBT,CAAA;AAGD,eAAe,IAAI,CAAA"}
1
+ {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../src/text/Text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,MAAM,WAAW,SAAU,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACtE;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAA;IACtC,IAAI,CAAC,EAAE,MAAM,KAAK,CAAC,GAAG,CAAC,iBAAiB,CAAA;CACxC;AAED,QAAA,MAAM,IAAI,kFAiBT,CAAA;AAGD,eAAe,IAAI,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@driveflux/beam",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./accordion": {
@@ -243,8 +243,8 @@
243
243
  "@storybook/test": "^8.6.12",
244
244
  "@swc/cli": "0.7.5",
245
245
  "@swc/core": "1.11.24",
246
- "@tailwindcss/cli": "^4.1.5",
247
- "@tailwindcss/postcss": "^4.1.5",
246
+ "@tailwindcss/cli": "^4.1.12",
247
+ "@tailwindcss/postcss": "^4.1.12",
248
248
  "@types/lodash": "^4.17.16",
249
249
  "@types/node": "^22.15.16",
250
250
  "@types/react": "^19.1.3",
@@ -252,7 +252,7 @@
252
252
  "react": "19.1.0",
253
253
  "react-dom": "19.1.0",
254
254
  "storybook": "^8.6.12",
255
- "tailwindcss": "^4.1.5",
255
+ "tailwindcss": "^4.1.12",
256
256
  "typescript": "^5.8.3"
257
257
  },
258
258
  "eslintConfig": {
@@ -1,8 +0,0 @@
1
- import type { FC } from 'react';
2
- import { type IconProps } from './Icon';
3
- declare const variants: {
4
- default: import("react/jsx-runtime").JSX.Element;
5
- };
6
- declare const IconCollapseAll: FC<IconProps<typeof variants>>;
7
- export default IconCollapseAll;
8
- //# sourceMappingURL=IconCollapseAll.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IconCollapseAll.d.ts","sourceRoot":"","sources":["../../src/icons/IconCollapseAll.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAA;AAE7C,QAAA,MAAM,QAAQ;;CAsBb,CAAA;AAED,QAAA,MAAM,eAAe,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAImB,CAAA;AAEvE,eAAe,eAAe,CAAA"}
@@ -1,97 +0,0 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function _object_without_properties(source, excluded) {
30
- if (source == null) return {};
31
- var target = _object_without_properties_loose(source, excluded);
32
- var key, i;
33
- if (Object.getOwnPropertySymbols) {
34
- var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
35
- for(i = 0; i < sourceSymbolKeys.length; i++){
36
- key = sourceSymbolKeys[i];
37
- if (excluded.indexOf(key) >= 0) continue;
38
- if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
39
- target[key] = source[key];
40
- }
41
- }
42
- return target;
43
- }
44
- function _object_without_properties_loose(source, excluded) {
45
- if (source == null) return {};
46
- var target = {};
47
- var sourceKeys = Object.keys(source);
48
- var key, i;
49
- for(i = 0; i < sourceKeys.length; i++){
50
- key = sourceKeys[i];
51
- if (excluded.indexOf(key) >= 0) continue;
52
- target[key] = source[key];
53
- }
54
- return target;
55
- }
56
- import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
57
- import { Icon } from './Icon';
58
- var variants = {
59
- default: /*#__PURE__*/ _jsxs(_Fragment, {
60
- children: [
61
- /*#__PURE__*/ _jsx("mask", {
62
- id: "mask0_6490_9460",
63
- style: {
64
- maskType: 'alpha'
65
- },
66
- maskUnits: "userSpaceOnUse",
67
- x: "0",
68
- y: "0",
69
- width: "16",
70
- height: "16",
71
- children: /*#__PURE__*/ _jsx("rect", {
72
- width: "16",
73
- height: "16",
74
- fill: "currentColor"
75
- })
76
- }),
77
- /*#__PURE__*/ _jsx("g", {
78
- mask: "url(#mask0_6490_9460)",
79
- children: /*#__PURE__*/ _jsx("path", {
80
- d: "M4.93333 14.6693L4 13.7359L8 9.73594L12 13.7359L11.0667 14.6693L8 11.6026L4.93333 14.6693ZM8 6.26927L4 2.26927L4.93333 1.33594L8 4.4026L11.0667 1.33594L12 2.26927L8 6.26927Z",
81
- fill: "#1C1B1F"
82
- })
83
- })
84
- ]
85
- })
86
- };
87
- var IconCollapseAll = function(_param) {
88
- var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 16 16' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'default' : _param_variant, props = _object_without_properties(_param, [
89
- "viewBox",
90
- "variant"
91
- ]);
92
- return /*#__PURE__*/ _jsx(Icon, _object_spread({
93
- viewBox: viewBox,
94
- element: variants[variant]
95
- }, props));
96
- };
97
- export default IconCollapseAll;
@@ -1,8 +0,0 @@
1
- import type { FC } from 'react';
2
- import { type IconProps } from './Icon';
3
- declare const variants: {
4
- default: import("react/jsx-runtime").JSX.Element;
5
- };
6
- declare const IconExpandAll: FC<IconProps<typeof variants>>;
7
- export default IconExpandAll;
8
- //# sourceMappingURL=IconExpandAll.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IconExpandAll.d.ts","sourceRoot":"","sources":["../../src/icons/IconExpandAll.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAA;AAE7C,QAAA,MAAM,QAAQ;;CAsBb,CAAA;AAED,QAAA,MAAM,aAAa,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIqB,CAAA;AAEvE,eAAe,aAAa,CAAA"}
@@ -1,97 +0,0 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function _object_without_properties(source, excluded) {
30
- if (source == null) return {};
31
- var target = _object_without_properties_loose(source, excluded);
32
- var key, i;
33
- if (Object.getOwnPropertySymbols) {
34
- var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
35
- for(i = 0; i < sourceSymbolKeys.length; i++){
36
- key = sourceSymbolKeys[i];
37
- if (excluded.indexOf(key) >= 0) continue;
38
- if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
39
- target[key] = source[key];
40
- }
41
- }
42
- return target;
43
- }
44
- function _object_without_properties_loose(source, excluded) {
45
- if (source == null) return {};
46
- var target = {};
47
- var sourceKeys = Object.keys(source);
48
- var key, i;
49
- for(i = 0; i < sourceKeys.length; i++){
50
- key = sourceKeys[i];
51
- if (excluded.indexOf(key) >= 0) continue;
52
- target[key] = source[key];
53
- }
54
- return target;
55
- }
56
- import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
57
- import { Icon } from './Icon';
58
- var variants = {
59
- default: /*#__PURE__*/ _jsxs(_Fragment, {
60
- children: [
61
- /*#__PURE__*/ _jsx("mask", {
62
- id: "mask0_6490_6481",
63
- style: {
64
- maskType: 'alpha'
65
- },
66
- maskUnits: "userSpaceOnUse",
67
- x: "0",
68
- y: "0",
69
- width: "16",
70
- height: "16",
71
- children: /*#__PURE__*/ _jsx("rect", {
72
- width: "16",
73
- height: "16",
74
- fill: "currentColor"
75
- })
76
- }),
77
- /*#__PURE__*/ _jsx("g", {
78
- mask: "url(#mask0_6490_6481)",
79
- children: /*#__PURE__*/ _jsx("path", {
80
- d: "M8 14.6693L4 10.6693L4.95 9.71927L8 12.7693L11.05 9.71927L12 10.6693L8 14.6693ZM4.96667 6.26927L4 5.33594L8 1.33594L12 5.33594L11.0333 6.26927L8 3.23594L4.96667 6.26927Z",
81
- fill: "currentColor"
82
- })
83
- })
84
- ]
85
- })
86
- };
87
- var IconExpandAll = function(_param) {
88
- var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 16 16' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'default' : _param_variant, props = _object_without_properties(_param, [
89
- "viewBox",
90
- "variant"
91
- ]);
92
- return /*#__PURE__*/ _jsx(Icon, _object_spread({
93
- viewBox: viewBox,
94
- element: variants[variant]
95
- }, props));
96
- };
97
- export default IconExpandAll;
@@ -1,9 +0,0 @@
1
- import type { FC } from 'react';
2
- import { type IconProps } from './Icon';
3
- declare const variants: {
4
- filled: import("react/jsx-runtime").JSX.Element;
5
- outline: import("react/jsx-runtime").JSX.Element;
6
- };
7
- declare const IconReport: FC<IconProps<typeof variants>>;
8
- export default IconReport;
9
- //# sourceMappingURL=IconReport.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"IconReport.d.ts","sourceRoot":"","sources":["../../src/icons/IconReport.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAA;AAE7C,QAAA,MAAM,QAAQ;;;CAwBb,CAAA;AACD,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIwB,CAAA;AAEvE,eAAe,UAAU,CAAA"}
@@ -1,92 +0,0 @@
1
- function _define_property(obj, key, value) {
2
- if (key in obj) {
3
- Object.defineProperty(obj, key, {
4
- value: value,
5
- enumerable: true,
6
- configurable: true,
7
- writable: true
8
- });
9
- } else {
10
- obj[key] = value;
11
- }
12
- return obj;
13
- }
14
- function _object_spread(target) {
15
- for(var i = 1; i < arguments.length; i++){
16
- var source = arguments[i] != null ? arguments[i] : {};
17
- var ownKeys = Object.keys(source);
18
- if (typeof Object.getOwnPropertySymbols === "function") {
19
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
- return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
- }));
22
- }
23
- ownKeys.forEach(function(key) {
24
- _define_property(target, key, source[key]);
25
- });
26
- }
27
- return target;
28
- }
29
- function _object_without_properties(source, excluded) {
30
- if (source == null) return {};
31
- var target = _object_without_properties_loose(source, excluded);
32
- var key, i;
33
- if (Object.getOwnPropertySymbols) {
34
- var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
35
- for(i = 0; i < sourceSymbolKeys.length; i++){
36
- key = sourceSymbolKeys[i];
37
- if (excluded.indexOf(key) >= 0) continue;
38
- if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
39
- target[key] = source[key];
40
- }
41
- }
42
- return target;
43
- }
44
- function _object_without_properties_loose(source, excluded) {
45
- if (source == null) return {};
46
- var target = {};
47
- var sourceKeys = Object.keys(source);
48
- var key, i;
49
- for(i = 0; i < sourceKeys.length; i++){
50
- key = sourceKeys[i];
51
- if (excluded.indexOf(key) >= 0) continue;
52
- target[key] = source[key];
53
- }
54
- return target;
55
- }
56
- import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
57
- import { Icon } from './Icon';
58
- var variants = {
59
- filled: /*#__PURE__*/ _jsx(_Fragment, {
60
- children: /*#__PURE__*/ _jsx("path", {
61
- d: "M14.1 3.75C13.8 2.85 12.975 2.25 12 2.25C11.025 2.25 10.2 2.85 9.9 3.75H4.5V21H19.5V3.75H14.1ZM15.975 15.525L15 14.55L12 17.475L9.75 15.225L8.025 16.95L6.975 15.9L9.825 13.05L12.075 15.3L15 12.375L17.025 14.4L15.975 15.525ZM16.5 9.75V11.25H7.5V9.75H16.5ZM9 5.25H11.25V4.425C11.25 4.05 11.55 3.75 12 3.75C12.375 3.75 12.675 4.05 12.675 4.35V5.25H15V6.75H9V5.25Z",
62
- fill: "currentColor"
63
- })
64
- }),
65
- outline: /*#__PURE__*/ _jsxs(_Fragment, {
66
- children: [
67
- /*#__PURE__*/ _jsx("path", {
68
- d: "M14.1 3.75C13.8 2.85 12.975 2.25 12 2.25C11.025 2.25 10.2 2.85 9.9 3.75H4.5V21H19.5V3.75H14.1ZM9 5.25H11.25V4.425C11.25 4.05 11.55 3.75 12 3.75C12.375 3.75 12.675 4.05 12.675 4.35V5.25H15V6.75H9V5.25ZM18 19.5H6V5.25H7.5V8.25H16.5V5.25H18V19.5Z",
69
- fill: "currentColor"
70
- }),
71
- /*#__PURE__*/ _jsx("path", {
72
- d: "M16.5 9.75H7.5V11.25H16.5V9.75Z",
73
- fill: "currentColor"
74
- }),
75
- /*#__PURE__*/ _jsx("path", {
76
- d: "M12 17.4751L9.82504 15.3001L8.02504 17.0251L6.97504 15.9751L9.82504 13.1251L12 15.3751L15 12.4501L17.025 14.4751L15.975 15.5251L15 14.5501L12 17.4751Z",
77
- fill: "currentColor"
78
- })
79
- ]
80
- })
81
- };
82
- var IconReport = function(_param) {
83
- var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 24 24' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'outline' : _param_variant, props = _object_without_properties(_param, [
84
- "viewBox",
85
- "variant"
86
- ]);
87
- return /*#__PURE__*/ _jsx(Icon, _object_spread({
88
- viewBox: viewBox,
89
- element: variants[variant]
90
- }, props));
91
- };
92
- export default IconReport;