@eleventheye/asui 1.7.4 → 1.8.1
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/astextfield/ASTextField.d.ts +13 -0
- package/dist/astextfield/ASTextField.d.ts.map +1 -0
- package/dist/astextfield/ASTextField.js +64 -0
- package/dist/astextfield/index.d.ts +2 -0
- package/dist/astextfield/index.d.ts.map +1 -0
- package/dist/astextfield/index.js +8 -0
- package/dist/astextfield/styles.d.ts +7 -0
- package/dist/astextfield/styles.d.ts.map +1 -0
- package/dist/astextfield/styles.js +258 -0
- package/dist/icons/SearchIcon.d.ts +5 -0
- package/dist/icons/SearchIcon.d.ts.map +1 -0
- package/dist/icons/SearchIcon.js +8 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.d.ts.map +1 -1
- package/dist/icons/index.js +4 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ASComponentSize } from '../apptypes/ASUI.types';
|
|
3
|
+
type ASTextFieldProps = {
|
|
4
|
+
className?: string;
|
|
5
|
+
value: string;
|
|
6
|
+
onChange?: (value: string) => void;
|
|
7
|
+
size?: ASComponentSize;
|
|
8
|
+
showClearButton?: boolean;
|
|
9
|
+
showSearchIcon?: boolean;
|
|
10
|
+
} & Pick<React.HTMLProps<HTMLInputElement>, 'style' | 'type' | 'placeholder' | 'id' | 'onBlur' | 'onFocus'>;
|
|
11
|
+
declare const ASTextField: React.FC<ASTextFieldProps>;
|
|
12
|
+
export default ASTextField;
|
|
13
|
+
//# sourceMappingURL=ASTextField.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ASTextField.d.ts","sourceRoot":"","sources":["../../src/astextfield/ASTextField.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiD,MAAM,OAAO,CAAC;AAGtE,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAUzD,KAAK,gBAAgB,GAAG;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,GAAG,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,gBAAgB,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,aAAa,GAAG,IAAI,GAAG,QAAQ,GAAG,SAAS,CAAC,CAAC;AAE5G,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAuG3C,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
+
const react_1 = require("react");
|
|
5
|
+
const asui_1 = require("@eleventheye/asui");
|
|
6
|
+
const ASUI_types_1 = require("../apptypes/ASUI.types");
|
|
7
|
+
const styles_1 = require("./styles");
|
|
8
|
+
const ASTextField = ({ className = '', value = '', onChange = () => undefined, size = ASUI_types_1.ASComponentSize.Medium, type = 'text', showClearButton = false, showSearchIcon = false, ...props }) => {
|
|
9
|
+
const genericId = (0, react_1.useId)();
|
|
10
|
+
const textFieldId = props.id || genericId;
|
|
11
|
+
const [valueString, setValueString] = (0, react_1.useState)(value);
|
|
12
|
+
const [clearIconVisible, setClearIconVisible] = (0, react_1.useState)(showClearButton);
|
|
13
|
+
const [searchIconVisible, setSearchIconVisible] = (0, react_1.useState)(showSearchIcon);
|
|
14
|
+
const [passwordIconVisible, setPasswordIconVisible] = (0, react_1.useState)(type === 'password');
|
|
15
|
+
const [rightIconCls, setRightIconCls] = (0, react_1.useState)('RightIconOff');
|
|
16
|
+
const [leftIconCls, setLeftIconCls] = (0, react_1.useState)('LeftIconOff');
|
|
17
|
+
const [passwordCls, setPasswordCls] = (0, react_1.useState)('');
|
|
18
|
+
const [showType, setShowType] = (0, react_1.useState)(type);
|
|
19
|
+
(0, react_1.useEffect)(() => {
|
|
20
|
+
let searchIcon = showSearchIcon;
|
|
21
|
+
let clearIcon = showClearButton;
|
|
22
|
+
if (type === 'search') {
|
|
23
|
+
searchIcon = true;
|
|
24
|
+
}
|
|
25
|
+
if (type === 'email') {
|
|
26
|
+
clearIcon = true;
|
|
27
|
+
}
|
|
28
|
+
if (type === 'password') {
|
|
29
|
+
setPasswordIconVisible(true);
|
|
30
|
+
}
|
|
31
|
+
setSearchIconVisible(searchIcon);
|
|
32
|
+
setClearIconVisible(clearIcon);
|
|
33
|
+
}, [showClearButton, showSearchIcon, type]);
|
|
34
|
+
(0, react_1.useEffect)(() => {
|
|
35
|
+
setRightIconCls(clearIconVisible ? 'RightIconOn' : 'RightIconOff');
|
|
36
|
+
}, [clearIconVisible]);
|
|
37
|
+
(0, react_1.useEffect)(() => {
|
|
38
|
+
setLeftIconCls(searchIconVisible ? 'LeftIconOn' : 'LeftIconOff');
|
|
39
|
+
setRightIconCls(searchIconVisible ? 'RightIconOn' : 'RightIconOff');
|
|
40
|
+
}, [searchIconVisible]);
|
|
41
|
+
(0, react_1.useEffect)(() => {
|
|
42
|
+
setPasswordCls(passwordIconVisible ? 'PasswordOn' : '');
|
|
43
|
+
}, [passwordIconVisible]);
|
|
44
|
+
const onValueChange = (e) => {
|
|
45
|
+
const target = e.target;
|
|
46
|
+
setValueString(target.value);
|
|
47
|
+
onChange(target.value);
|
|
48
|
+
};
|
|
49
|
+
const clearValue = () => {
|
|
50
|
+
setValueString('');
|
|
51
|
+
onChange('');
|
|
52
|
+
};
|
|
53
|
+
const onInputFieldFocus = (e) => {
|
|
54
|
+
const target = e.target;
|
|
55
|
+
target.select();
|
|
56
|
+
return e;
|
|
57
|
+
};
|
|
58
|
+
const onPasswordShowHide = () => {
|
|
59
|
+
setShowType(showType === 'password' ? 'text' : 'password');
|
|
60
|
+
};
|
|
61
|
+
const baseCls = `"ASTextFieldInputContainer" ${size} ${leftIconCls} ${rightIconCls} ${passwordCls} ${className}`;
|
|
62
|
+
return ((0, jsx_runtime_1.jsxs)(styles_1.ASTextFieldInputContainer, { className: baseCls, style: props.style, children: [searchIconVisible && ((0, jsx_runtime_1.jsx)(styles_1.ASTextFieldSearchIcon, { className: "ASTextFieldSearchIcon", children: (0, jsx_runtime_1.jsx)(asui_1.SearchIcon, { color: "#333333", size: 24 }) })), (0, jsx_runtime_1.jsx)(styles_1.ASTextFieldInput, { id: textFieldId, className: "ASTextFieldInput", type: showType, value: valueString, onChange: onValueChange, onFocus: onInputFieldFocus, ...props }), (0, jsx_runtime_1.jsx)(styles_1.ASTextFieldClickIcon, { className: "ASTextFieldClearIcon", onClick: clearValue, children: (0, jsx_runtime_1.jsx)(asui_1.CloseIcon, { color: "#333333", circleStrokeColor: "#333333", size: 24 }) }), passwordIconVisible && ((0, jsx_runtime_1.jsxs)(styles_1.ASTextFieldClickIcon, { className: "ASTextFieldPasswordIcon", onClick: onPasswordShowHide, children: [showType === 'password' && (0, jsx_runtime_1.jsx)(styles_1.ScaledEyeIcon, { color: "#333333", circleStrokeColor: "transparent", size: 24 }), showType === 'text' && (0, jsx_runtime_1.jsx)(styles_1.ScaledSlashedEyeIcon, { color: "#333333", circleStrokeColor: "transparent", size: 24 })] }))] }));
|
|
63
|
+
};
|
|
64
|
+
exports.default = ASTextField;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/astextfield/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var ASTextField_1 = require("./ASTextField");
|
|
8
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(ASTextField_1).default; } });
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const ASTextFieldInputContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
export declare const ASTextFieldInput: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never>> & string;
|
|
3
|
+
export declare const ASTextFieldClickIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
|
+
export declare const ASTextFieldSearchIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
5
|
+
export declare const ScaledEyeIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("../icons").IconProps, never>> & string & Omit<import("react").FC<import("../icons").IconProps>, keyof import("react").Component<any, {}, any>>;
|
|
6
|
+
export declare const ScaledSlashedEyeIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("../icons").IconProps, never>> & string & Omit<import("react").FC<import("../icons").IconProps>, keyof import("react").Component<any, {}, any>>;
|
|
7
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../src/astextfield/styles.ts"],"names":[],"mappings":"AAqBA,eAAO,MAAM,yBAAyB,6NA+KrC,CAAC;AAEF,eAAO,MAAM,gBAAgB,sOA+B5B,CAAC;AAEF,eAAO,MAAM,oBAAoB,6NAYhC,CAAC;AAEF,eAAO,MAAM,qBAAqB,6NAIjC,CAAC;AAEF,eAAO,MAAM,aAAa,gQAOzB,CAAC;AAEF,eAAO,MAAM,oBAAoB,gQAQhC,CAAC"}
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.ScaledSlashedEyeIcon = exports.ScaledEyeIcon = exports.ASTextFieldSearchIcon = exports.ASTextFieldClickIcon = exports.ASTextFieldInput = exports.ASTextFieldInputContainer = void 0;
|
|
7
|
+
const styled_components_1 = __importDefault(require("styled-components"));
|
|
8
|
+
const icons_1 = require("../icons");
|
|
9
|
+
const mainYellow = '#ffd321';
|
|
10
|
+
const mainGray33 = '#333333';
|
|
11
|
+
const mainGray55 = '#555555';
|
|
12
|
+
const mainGray66 = '#666666';
|
|
13
|
+
const mainGray81 = '#818181';
|
|
14
|
+
const mainGray97 = '#979797';
|
|
15
|
+
const yellow30 = '#fff5b2';
|
|
16
|
+
exports.ASTextFieldInputContainer = styled_components_1.default.div `
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
position: relative;
|
|
20
|
+
max-width: 100%;
|
|
21
|
+
width: -webkit-fill-available;
|
|
22
|
+
min-width: 350px;
|
|
23
|
+
background: linear-gradient(to bottom, ${yellow30} 5%, ${mainYellow} 100%);
|
|
24
|
+
color: ${mainGray33};
|
|
25
|
+
border: 1px solid ${mainGray55};
|
|
26
|
+
border-radius: 35px;
|
|
27
|
+
|
|
28
|
+
&.RightIconOn {
|
|
29
|
+
.ASTextFieldClearIcon {
|
|
30
|
+
margin-right: 8px;
|
|
31
|
+
cursor: pointer;
|
|
32
|
+
color: ${mainGray55};
|
|
33
|
+
user-select: none;
|
|
34
|
+
|
|
35
|
+
&:hover {
|
|
36
|
+
text-shadow: 1px 1px 3px ${mainGray97};
|
|
37
|
+
}
|
|
38
|
+
&:active {
|
|
39
|
+
color: ${mainGray33};
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.LeftIconOn {
|
|
45
|
+
.ASTextFieldSearchIcon {
|
|
46
|
+
margin-left: 12px;
|
|
47
|
+
user-select: none;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&.RightIconOff {
|
|
52
|
+
.ASTextFieldClearIcon {
|
|
53
|
+
content-visibility: hidden;
|
|
54
|
+
margin-right: 0;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&.LeftIconOff {
|
|
59
|
+
.ASTextFieldSearchIcon {
|
|
60
|
+
content-visibility: hidden;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&.LeftIconOn.RightIconOn {
|
|
65
|
+
.ASTextFieldInput {
|
|
66
|
+
margin-right: 6px;
|
|
67
|
+
margin-left: 6px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&.LeftIconOff.RightIconOff {
|
|
72
|
+
.ASTextFieldInput {
|
|
73
|
+
margin-right: 18px;
|
|
74
|
+
margin-left: 18px;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.LeftIconOn.RightIconOff {
|
|
79
|
+
.ASTextFieldInput {
|
|
80
|
+
margin-right: 18px;
|
|
81
|
+
margin-left: 8px;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&.PasswordOn.LeftIconOff.RightIconOff,
|
|
86
|
+
&.LeftIconOff.RightIconOn {
|
|
87
|
+
.ASTextFieldInput {
|
|
88
|
+
margin-right: 6px;
|
|
89
|
+
margin-left: 18px;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
&.ASSmall {
|
|
94
|
+
height: 30px;
|
|
95
|
+
.ASTextFieldInput {
|
|
96
|
+
margin-top: 4px;
|
|
97
|
+
margin-bottom: 4px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&.ASMedium {
|
|
102
|
+
height: 40px;
|
|
103
|
+
.ASTextFieldInput {
|
|
104
|
+
margin-top: 5px;
|
|
105
|
+
margin-bottom: 5px;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
&.ASLarge {
|
|
110
|
+
height: 50px;
|
|
111
|
+
.ASTextFieldInput {
|
|
112
|
+
margin-top: 6px;
|
|
113
|
+
margin-bottom: 6px;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&[class*='PasswordOn'].ASSmall,
|
|
118
|
+
&[class*='LeftIcon'][class*='RightIcon'].ASSmall {
|
|
119
|
+
.ASTextFieldClearIcon,
|
|
120
|
+
.ASTextFieldSearchIcon {
|
|
121
|
+
font-size: 1.5rem;
|
|
122
|
+
font-weight: 400;
|
|
123
|
+
line-height: 1;
|
|
124
|
+
}
|
|
125
|
+
> input.ASTextFieldInput {
|
|
126
|
+
font-size: 0.9rem;
|
|
127
|
+
font-weight: 400;
|
|
128
|
+
height: -webkit-fill-available;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
&[class*='PasswordOn'].ASMedium,
|
|
133
|
+
&[class*='LeftIcon'][class*='RightIcon'].ASMedium {
|
|
134
|
+
.ASTextFieldClearIcon,
|
|
135
|
+
.ASTextFieldSearchIcon {
|
|
136
|
+
font-size: 1.75rem;
|
|
137
|
+
font-weight: 500;
|
|
138
|
+
line-height: 1;
|
|
139
|
+
}
|
|
140
|
+
> input.ASTextFieldInput {
|
|
141
|
+
font-size: 1.25rem;
|
|
142
|
+
font-weight: 600;
|
|
143
|
+
height: -webkit-fill-available;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&[class*='PasswordOn'].ASLarge,
|
|
148
|
+
&[class*='LeftIcon'][class*='RightIcon'].ASLarge {
|
|
149
|
+
.ASTextFieldClearIcon,
|
|
150
|
+
.ASTextFieldSearchIcon {
|
|
151
|
+
font-size: 2rem;
|
|
152
|
+
font-weight: 600;
|
|
153
|
+
line-height: 1;
|
|
154
|
+
}
|
|
155
|
+
> input.ASTextFieldInput {
|
|
156
|
+
font-size: 1.5rem;
|
|
157
|
+
font-weight: 600;
|
|
158
|
+
height: -webkit-fill-available;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
&[class*='PasswordOn'] > input[type='search' i]::-webkit-search-cancel-button {
|
|
163
|
+
color: transparent;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
& input[type='search' i]:enabled:read-write:-webkit-any(:focus, :hover)::-webkit-search-cancel-button {
|
|
167
|
+
opacity: 0;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
// Chrome autofill update
|
|
171
|
+
// input:-webkit-autofill,
|
|
172
|
+
input:-webkit-autofill:hover,
|
|
173
|
+
input:-webkit-autofill:focus,
|
|
174
|
+
textarea:-webkit-autofill,
|
|
175
|
+
textarea:-webkit-autofill:hover,
|
|
176
|
+
textarea:-webkit-autofill:focus,
|
|
177
|
+
// select:-webkit-autofill,
|
|
178
|
+
select:-webkit-autofill:hover,
|
|
179
|
+
select:-webkit-autofill:focus {
|
|
180
|
+
border: 1px solid ${mainGray97};
|
|
181
|
+
-webkit-text-fill-color: ${mainGray66};
|
|
182
|
+
// -webkit-box-shadow: 0 0 0 1000px ${mainYellow} inset;
|
|
183
|
+
-webkit-box-shadow: inset 0 1px 7px 1px ${mainGray97};
|
|
184
|
+
transition: background-color 5000s ease-in-out 0s;
|
|
185
|
+
}
|
|
186
|
+
input:-webkit-autofill,
|
|
187
|
+
select: -webkit-autofill {
|
|
188
|
+
border: 1px solid ${mainGray97};
|
|
189
|
+
-webkit-text-fill-color: ${mainGray66};
|
|
190
|
+
}
|
|
191
|
+
`;
|
|
192
|
+
exports.ASTextFieldInput = styled_components_1.default.input `
|
|
193
|
+
font-family: 'Saira Extra Condensed';
|
|
194
|
+
width: 100%;
|
|
195
|
+
// appearance: textfield;
|
|
196
|
+
outline: none;
|
|
197
|
+
transition: all 0.5s ease-in-out;
|
|
198
|
+
border-radius: 4px;
|
|
199
|
+
margin-top: 4px;
|
|
200
|
+
margin-bottom: 4px;
|
|
201
|
+
border: thin solid ${mainGray81};
|
|
202
|
+
background-color: transparent;
|
|
203
|
+
background: linear-gradient(to bottom, ${mainYellow} 5%, ${yellow30} 100%);
|
|
204
|
+
padding-inline: 6px;
|
|
205
|
+
color: ${mainGray33};
|
|
206
|
+
|
|
207
|
+
&:hover {
|
|
208
|
+
border: thin solid ${mainGray55};
|
|
209
|
+
box-shadow: inset 0 1px 7px 1px ${mainGray33};
|
|
210
|
+
}
|
|
211
|
+
&:active,
|
|
212
|
+
&:focus {
|
|
213
|
+
border: thin solid ${mainGray55};
|
|
214
|
+
// outline: thin solid ${mainGray55};
|
|
215
|
+
box-shadow: inset 0 1px 7px 1px ${mainGray33};
|
|
216
|
+
background: linear-gradient(to top, ${mainYellow} 15%, ${yellow30} 100%);
|
|
217
|
+
color: ${mainGray33};
|
|
218
|
+
}
|
|
219
|
+
&::placeholder {
|
|
220
|
+
color: ${mainGray66};
|
|
221
|
+
font-weight: 300;
|
|
222
|
+
}
|
|
223
|
+
`;
|
|
224
|
+
exports.ASTextFieldClickIcon = styled_components_1.default.div `
|
|
225
|
+
margin-right: 8px;
|
|
226
|
+
cursor: pointer;
|
|
227
|
+
color: ${mainGray55};
|
|
228
|
+
user-select: none;
|
|
229
|
+
|
|
230
|
+
&:hover {
|
|
231
|
+
text-shadow: 1px 1px 3px ${mainGray97};
|
|
232
|
+
}
|
|
233
|
+
&:active {
|
|
234
|
+
color: ${mainGray33};
|
|
235
|
+
}
|
|
236
|
+
`;
|
|
237
|
+
exports.ASTextFieldSearchIcon = styled_components_1.default.div `
|
|
238
|
+
margin-left: 12px;
|
|
239
|
+
user-select: none;
|
|
240
|
+
color: ${mainGray55};
|
|
241
|
+
`;
|
|
242
|
+
exports.ScaledEyeIcon = (0, styled_components_1.default)(icons_1.EyeIcon) `
|
|
243
|
+
cursor: pointer;
|
|
244
|
+
user-select: none;
|
|
245
|
+
scale: 1.3;
|
|
246
|
+
&:hover {
|
|
247
|
+
scale: 1.4;
|
|
248
|
+
}
|
|
249
|
+
`;
|
|
250
|
+
exports.ScaledSlashedEyeIcon = (0, styled_components_1.default)(icons_1.EyeSlashIcon) `
|
|
251
|
+
cursor: pointer;
|
|
252
|
+
user-select: none;
|
|
253
|
+
scale: 1.3;
|
|
254
|
+
transition: scale 0.3s ease-in-out;
|
|
255
|
+
&:hover {
|
|
256
|
+
scale: 1.4;
|
|
257
|
+
}
|
|
258
|
+
`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchIcon.d.ts","sourceRoot":"","sources":["../../src/icons/SearchIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAG1C,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA6BnC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
+
const styles_1 = require("./styles");
|
|
5
|
+
const SearchIcon = ({ className = '', size = 24, color = '#fffff0', fillColor = 'transparent', fillOpacity = 1, circleStrokeColor = 'transparent', }) => {
|
|
6
|
+
return ((0, jsx_runtime_1.jsx)(styles_1.IconContainer, { className: className, children: (0, jsx_runtime_1.jsxs)("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "transparent", xmlns: "http://www.w3.org/2000/svg", children: [(0, jsx_runtime_1.jsx)("circle", { fill: fillColor, fillOpacity: fillOpacity, cx: "12", cy: "12", r: "10.5", stroke: circleStrokeColor, strokeWidth: '1.5px' }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.3 7.4c-1.7-1.6-4.3-1.6-6 0-1.6 1.7-1.6 4.3 0 6 1.7 1.6 4.3 1.6 6 0 1.6-1.7 1.6-4.3 0-6Zm1.4 6.4s0 0 .1.1l2.9 2.9c.3.3.3.7 0 1-.2.3-.7.3-1 0l-2.9-3s-.1 0-.1 0c-2.2 1.7-5.3 1.6-7.4-.5-2.1-2.1-2.1-5.7 0-7.9 2.2-2.2 5.8-2.2 8 0 2 2 2.1 5.2.4 7.4Z", fill: color })] }) }));
|
|
7
|
+
};
|
|
8
|
+
exports.default = SearchIcon;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -32,6 +32,8 @@ export * from './RulerIcon';
|
|
|
32
32
|
export { default as RulerIcon } from './RulerIcon';
|
|
33
33
|
export * from './SaveIcon';
|
|
34
34
|
export { default as SaveIcon } from './SaveIcon';
|
|
35
|
+
export * from './SearchIcon';
|
|
36
|
+
export { default as SearchIcon } from './SearchIcon';
|
|
35
37
|
export * from './TimeLapseIcon';
|
|
36
38
|
export { default as TimeLapseIcon } from './TimeLapseIcon';
|
|
37
39
|
export * from './UnlockIcon';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,mBAAmB,CAAC;AAClC,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAE/D,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAE3D,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGjE,cAAc,eAAe,CAAC;AAC9B,YAAY,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,mBAAmB,CAAC;AAClC,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAE/D,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,gBAAgB,CAAC;AAC/B,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEzD,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAE/C,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AAEnD,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEjD,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAE3D,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,cAAc,oBAAoB,CAAC;AACnC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGjE,cAAc,eAAe,CAAC;AAC9B,YAAY,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC"}
|
package/dist/icons/index.js
CHANGED
|
@@ -17,7 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
17
17
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
18
|
};
|
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.UserSettingsIcon = exports.UnlockIcon = exports.TimeLapseIcon = exports.SaveIcon = exports.RulerIcon = exports.PenIcon = exports.LockIcon = exports.HomeIcon = exports.HexagonIcon = exports.GearUserIcon = exports.GamesIcon = exports.FootballIcon = exports.EyeSlashIcon = exports.EyeIcon = exports.EleventheyeIcon = exports.DeleteIcon = exports.CloseIcon = exports.CheckIcon = exports.AddUserIcon = exports.AddItemIcon = void 0;
|
|
20
|
+
exports.UserSettingsIcon = exports.UnlockIcon = exports.TimeLapseIcon = exports.SearchIcon = exports.SaveIcon = exports.RulerIcon = exports.PenIcon = exports.LockIcon = exports.HomeIcon = exports.HexagonIcon = exports.GearUserIcon = exports.GamesIcon = exports.FootballIcon = exports.EyeSlashIcon = exports.EyeIcon = exports.EleventheyeIcon = exports.DeleteIcon = exports.CloseIcon = exports.CheckIcon = exports.AddUserIcon = exports.AddItemIcon = void 0;
|
|
21
21
|
__exportStar(require("./AddItemIcon"), exports);
|
|
22
22
|
var AddItemIcon_1 = require("./AddItemIcon");
|
|
23
23
|
Object.defineProperty(exports, "AddItemIcon", { enumerable: true, get: function () { return __importDefault(AddItemIcon_1).default; } });
|
|
@@ -69,6 +69,9 @@ Object.defineProperty(exports, "RulerIcon", { enumerable: true, get: function ()
|
|
|
69
69
|
__exportStar(require("./SaveIcon"), exports);
|
|
70
70
|
var SaveIcon_1 = require("./SaveIcon");
|
|
71
71
|
Object.defineProperty(exports, "SaveIcon", { enumerable: true, get: function () { return __importDefault(SaveIcon_1).default; } });
|
|
72
|
+
__exportStar(require("./SearchIcon"), exports);
|
|
73
|
+
var SearchIcon_1 = require("./SearchIcon");
|
|
74
|
+
Object.defineProperty(exports, "SearchIcon", { enumerable: true, get: function () { return __importDefault(SearchIcon_1).default; } });
|
|
72
75
|
__exportStar(require("./TimeLapseIcon"), exports);
|
|
73
76
|
var TimeLapseIcon_1 = require("./TimeLapseIcon");
|
|
74
77
|
Object.defineProperty(exports, "TimeLapseIcon", { enumerable: true, get: function () { return __importDefault(TimeLapseIcon_1).default; } });
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as ASTextField } from './astextfield/ASTextField';
|
|
1
2
|
export { default as AddItemIcon } from './icons/AddItemIcon';
|
|
2
3
|
export { default as AddUserIcon } from './icons/AddUserIcon';
|
|
3
4
|
export { default as CheckIcon } from './icons/CheckIcon';
|
|
@@ -17,6 +18,7 @@ export { default as LockIcon } from './icons/LockIcon';
|
|
|
17
18
|
export { default as PenIcon } from './icons/PenIcon';
|
|
18
19
|
export { default as RulerIcon } from './icons/RulerIcon';
|
|
19
20
|
export { default as SaveIcon } from './icons/SaveIcon';
|
|
21
|
+
export { default as SearchIcon } from './icons/SearchIcon';
|
|
20
22
|
export { default as TimeLapseIcon } from './icons/TimeLapseIcon';
|
|
21
23
|
export { default as UnlockIcon } from './icons/UnlockIcon';
|
|
22
24
|
export { default as UserSettingsIcon } from './icons/UserSettingsIcon';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,cAAc,qBAAqB,CAAC;AACpC,YAAY,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,0BAA0B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,cAAc,qBAAqB,CAAC;AACpC,YAAY,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,0BAA0B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -17,7 +17,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
17
17
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
18
|
};
|
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.UserSettingsIcon = exports.UnlockIcon = exports.TimeLapseIcon = exports.SaveIcon = exports.RulerIcon = exports.PenIcon = exports.LockIcon = exports.HomeIcon = exports.HexagonIcon = exports.GearUserIcon = exports.GamesIcon = exports.FootballIcon = exports.EyeSlashIcon = exports.EyeIcon = exports.EleventheyeIcon = exports.DeleteIcon = exports.CloseIcon = exports.CheckIcon = exports.AddUserIcon = exports.AddItemIcon = void 0;
|
|
20
|
+
exports.UserSettingsIcon = exports.UnlockIcon = exports.TimeLapseIcon = exports.SearchIcon = exports.SaveIcon = exports.RulerIcon = exports.PenIcon = exports.LockIcon = exports.HomeIcon = exports.HexagonIcon = exports.GearUserIcon = exports.GamesIcon = exports.FootballIcon = exports.EyeSlashIcon = exports.EyeIcon = exports.EleventheyeIcon = exports.DeleteIcon = exports.CloseIcon = exports.CheckIcon = exports.AddUserIcon = exports.AddItemIcon = exports.ASTextField = void 0;
|
|
21
|
+
var ASTextField_1 = require("./astextfield/ASTextField");
|
|
22
|
+
Object.defineProperty(exports, "ASTextField", { enumerable: true, get: function () { return __importDefault(ASTextField_1).default; } });
|
|
21
23
|
var AddItemIcon_1 = require("./icons/AddItemIcon");
|
|
22
24
|
Object.defineProperty(exports, "AddItemIcon", { enumerable: true, get: function () { return __importDefault(AddItemIcon_1).default; } });
|
|
23
25
|
var AddUserIcon_1 = require("./icons/AddUserIcon");
|
|
@@ -53,6 +55,8 @@ var RulerIcon_1 = require("./icons/RulerIcon");
|
|
|
53
55
|
Object.defineProperty(exports, "RulerIcon", { enumerable: true, get: function () { return __importDefault(RulerIcon_1).default; } });
|
|
54
56
|
var SaveIcon_1 = require("./icons/SaveIcon");
|
|
55
57
|
Object.defineProperty(exports, "SaveIcon", { enumerable: true, get: function () { return __importDefault(SaveIcon_1).default; } });
|
|
58
|
+
var SearchIcon_1 = require("./icons/SearchIcon");
|
|
59
|
+
Object.defineProperty(exports, "SearchIcon", { enumerable: true, get: function () { return __importDefault(SearchIcon_1).default; } });
|
|
56
60
|
var TimeLapseIcon_1 = require("./icons/TimeLapseIcon");
|
|
57
61
|
Object.defineProperty(exports, "TimeLapseIcon", { enumerable: true, get: function () { return __importDefault(TimeLapseIcon_1).default; } });
|
|
58
62
|
var UnlockIcon_1 = require("./icons/UnlockIcon");
|