@ssa-ui-kit/core 2.14.0 → 2.15.0-canary-9a56baa-20250506
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/components/Icon/icons/ExcelDownload.d.ts +3 -0
- package/dist/components/Icon/icons/FilterFunnel.d.ts +3 -0
- package/dist/components/Icon/icons/all.d.ts +2 -0
- package/dist/components/Icon/icons/iconsList.d.ts +1 -1
- package/dist/index.js +89 -5
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -27,8 +27,10 @@ export * as Diet from './Diet';
|
|
|
27
27
|
export * as Edit from './Edit';
|
|
28
28
|
export * as Email from './Email';
|
|
29
29
|
export * as Employee from './Employee';
|
|
30
|
+
export * as ExcelDownload from './ExcelDownload';
|
|
30
31
|
export * as Expertise from './Expertise';
|
|
31
32
|
export * as Filter from './Filter';
|
|
33
|
+
export * as FilterFunnel from './FilterFunnel';
|
|
32
34
|
export * as Geography from './Geography';
|
|
33
35
|
export * as Home from './Home';
|
|
34
36
|
export * as Import from './Import';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const iconsList: ("visible" | "copy" | "circle" | "search" | "email" | "attention" | "archive" | "arrow-down" | "arrow-up" | "assessment" | "ban-user" | "bin" | "calendar" | "carrot-down" | "carrot-left" | "carrot-right" | "carrot-up" | "change" | "chart" | "check" | "check-circle" | "check-circle-inverted" | "circular" | "clock" | "cogwheel" | "company" | "confirm-email" | "cross" | "diet" | "edit" | "employee" | "expertise" | "filter" | "geography" | "home" | "import" | "information" | "invisible" | "language" | "lock" | "log-in" | "log-out" | "maximize" | "measurements" | "message" | "minus" | "minus-circle" | "minus-circle-inverted" | "more" | "more-vertical" | "notification" | "pages" | "plus" | "plus-circle" | "plus-circle-inverted" | "radio-on" | "report" | "robot" | "roles" | "settings" | "sleep" | "stats" | "time-tracking" | "trainings" | "unarchive" | "union" | "unlock" | "user" | "warning")[];
|
|
1
|
+
export declare const iconsList: ("visible" | "copy" | "circle" | "search" | "email" | "attention" | "archive" | "arrow-down" | "arrow-up" | "assessment" | "ban-user" | "bin" | "calendar" | "carrot-down" | "carrot-left" | "carrot-right" | "carrot-up" | "change" | "chart" | "check" | "check-circle" | "check-circle-inverted" | "circular" | "clock" | "cogwheel" | "company" | "confirm-email" | "cross" | "diet" | "edit" | "employee" | "excel-download" | "expertise" | "filter" | "filter-funnel" | "geography" | "home" | "import" | "information" | "invisible" | "language" | "lock" | "log-in" | "log-out" | "maximize" | "measurements" | "message" | "minus" | "minus-circle" | "minus-circle-inverted" | "more" | "more-vertical" | "notification" | "pages" | "plus" | "plus-circle" | "plus-circle-inverted" | "radio-on" | "report" | "robot" | "roles" | "settings" | "sleep" | "stats" | "time-tracking" | "trainings" | "unarchive" | "union" | "unlock" | "user" | "warning")[];
|
package/dist/index.js
CHANGED
|
@@ -520,6 +520,14 @@ __webpack_require__.d(Employee_namespaceObject, {
|
|
|
520
520
|
ICON_NAME: () => (Employee_ICON_NAME)
|
|
521
521
|
});
|
|
522
522
|
|
|
523
|
+
// NAMESPACE OBJECT: ./src/components/Icon/icons/ExcelDownload.tsx
|
|
524
|
+
var ExcelDownload_namespaceObject = {};
|
|
525
|
+
__webpack_require__.r(ExcelDownload_namespaceObject);
|
|
526
|
+
__webpack_require__.d(ExcelDownload_namespaceObject, {
|
|
527
|
+
ExcelDownload: () => (ExcelDownload),
|
|
528
|
+
ICON_NAME: () => (ExcelDownload_ICON_NAME)
|
|
529
|
+
});
|
|
530
|
+
|
|
523
531
|
// NAMESPACE OBJECT: ./src/components/Icon/icons/Expertise.tsx
|
|
524
532
|
var Expertise_namespaceObject = {};
|
|
525
533
|
__webpack_require__.r(Expertise_namespaceObject);
|
|
@@ -536,6 +544,14 @@ __webpack_require__.d(Filter_namespaceObject, {
|
|
|
536
544
|
ICON_NAME: () => (Filter_ICON_NAME)
|
|
537
545
|
});
|
|
538
546
|
|
|
547
|
+
// NAMESPACE OBJECT: ./src/components/Icon/icons/FilterFunnel.tsx
|
|
548
|
+
var FilterFunnel_namespaceObject = {};
|
|
549
|
+
__webpack_require__.r(FilterFunnel_namespaceObject);
|
|
550
|
+
__webpack_require__.d(FilterFunnel_namespaceObject, {
|
|
551
|
+
FilterFunnel: () => (FilterFunnel),
|
|
552
|
+
ICON_NAME: () => (FilterFunnel_ICON_NAME)
|
|
553
|
+
});
|
|
554
|
+
|
|
539
555
|
// NAMESPACE OBJECT: ./src/components/Icon/icons/Geography.tsx
|
|
540
556
|
var Geography_namespaceObject = {};
|
|
541
557
|
__webpack_require__.r(Geography_namespaceObject);
|
|
@@ -873,8 +889,10 @@ __webpack_require__.d(all_namespaceObject, {
|
|
|
873
889
|
Edit: () => (Edit_namespaceObject),
|
|
874
890
|
Email: () => (Email_namespaceObject),
|
|
875
891
|
Employee: () => (Employee_namespaceObject),
|
|
892
|
+
ExcelDownload: () => (ExcelDownload_namespaceObject),
|
|
876
893
|
Expertise: () => (Expertise_namespaceObject),
|
|
877
894
|
Filter: () => (Filter_namespaceObject),
|
|
895
|
+
FilterFunnel: () => (FilterFunnel_namespaceObject),
|
|
878
896
|
Geography: () => (Geography_namespaceObject),
|
|
879
897
|
Home: () => (Home_namespaceObject),
|
|
880
898
|
Import: () => (Import_namespaceObject),
|
|
@@ -2596,6 +2614,36 @@ const Employee = ({
|
|
|
2596
2614
|
})]
|
|
2597
2615
|
});
|
|
2598
2616
|
const Employee_ICON_NAME = 'employee';
|
|
2617
|
+
;// ./src/components/Icon/icons/ExcelDownload.tsx
|
|
2618
|
+
|
|
2619
|
+
const ExcelDownload = ({
|
|
2620
|
+
fill = '#000',
|
|
2621
|
+
size = 24,
|
|
2622
|
+
tooltip = 'Excel download',
|
|
2623
|
+
...props
|
|
2624
|
+
}) => (0,jsx_runtime_namespaceObject.jsxs)("svg", {
|
|
2625
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2626
|
+
width: `${size}px`,
|
|
2627
|
+
height: `${size}px`,
|
|
2628
|
+
viewBox: "0 0 24 24",
|
|
2629
|
+
fill: "none",
|
|
2630
|
+
...props,
|
|
2631
|
+
children: [(0,jsx_runtime_namespaceObject.jsx)("title", {
|
|
2632
|
+
children: tooltip
|
|
2633
|
+
}), (0,jsx_runtime_namespaceObject.jsx)("path", {
|
|
2634
|
+
fillRule: "evenodd",
|
|
2635
|
+
clipRule: "evenodd",
|
|
2636
|
+
d: "M6.04815 2C4.81157 2 3.7998 3.01813 3.7998 4.2625V17.7375C3.7998 18.9819 4.81157 20 6.04815 20H14.0058C13.6986 19.7203 13.5334 19.34 13.5176 18.9524H6.04815C5.37634 18.9524 4.84083 18.4135 4.84083 17.7375V4.2625C4.84083 3.58646 5.37634 3.04757 6.04815 3.04757H11.986C11.9879 3.04857 11.9915 3.05051 11.9972 3.05405L11.9999 3.05572L12.007 3.06013V6.00121C12.007 6.47167 12.1866 6.90245 12.4801 7.22748C12.8131 7.59634 13.2929 7.82903 13.8234 7.82903H16.7549L16.7586 9.39603V11.686C17.008 11.3746 17.3791 11.1648 17.7997 11.1287L17.7998 7.32704L17.7976 7.29664C17.7953 7.26342 17.792 7.21583 17.7895 7.20309C17.7694 7.1015 17.7199 7.00816 17.6471 6.9349L13.2753 2.53554C12.9348 2.19237 12.4726 2 11.991 2H6.04815ZM3.7998 4.2625L3.88836 4.29517V4.29274L3.7998 4.2625ZM13.048 6.00121V3.78825L16.0225 6.78145H13.8234C13.39 6.78145 13.048 6.43738 13.048 6.00121Z",
|
|
2637
|
+
fill: fill
|
|
2638
|
+
}), (0,jsx_runtime_namespaceObject.jsx)("path", {
|
|
2639
|
+
d: "M9.86867 12.4996L7.97338 9H9.74921L10.6803 11.0954C10.7534 11.2606 10.8189 11.4641 10.8757 11.6923H10.8862C10.9229 11.5562 10.9932 11.3425 11.0921 11.0718L12.121 9H13.7457L11.8068 12.4647L13.7998 16H12.0774L10.9516 13.717C10.9099 13.6323 10.8662 13.4775 10.8216 13.2492H10.8103C10.7888 13.3558 10.7377 13.5224 10.6593 13.7406L9.53276 15.9992H7.7998L9.86867 12.4996Z",
|
|
2640
|
+
fill: fill
|
|
2641
|
+
}), (0,jsx_runtime_namespaceObject.jsx)("path", {
|
|
2642
|
+
d: "M17.9128 11.9231C18.2994 11.9231 18.6128 12.2365 18.6128 12.6231V19.8599L20.372 18.359C20.6661 18.108 21.1079 18.143 21.3589 18.4371C21.6098 18.7312 21.5748 19.1731 21.2807 19.424L18.3677 21.9094C18.2212 22.0344 18.036 22.0895 17.8553 22.0745C17.6994 22.0618 17.5579 21.998 17.4476 21.8999L14.5003 19.4278C14.2041 19.1794 14.1654 18.7378 14.4138 18.4416C14.6623 18.1454 15.1038 18.1067 15.4 18.3552L17.2128 19.8757V12.6231C17.2128 12.2365 17.5262 11.9231 17.9128 11.9231Z",
|
|
2643
|
+
fill: fill
|
|
2644
|
+
})]
|
|
2645
|
+
});
|
|
2646
|
+
const ExcelDownload_ICON_NAME = 'excel-download';
|
|
2599
2647
|
;// ./src/components/Icon/icons/Expertise.tsx
|
|
2600
2648
|
|
|
2601
2649
|
const Expertise = ({
|
|
@@ -2647,6 +2695,33 @@ const Filter = ({
|
|
|
2647
2695
|
})]
|
|
2648
2696
|
});
|
|
2649
2697
|
const Filter_ICON_NAME = 'filter';
|
|
2698
|
+
;// ./src/components/Icon/icons/FilterFunnel.tsx
|
|
2699
|
+
|
|
2700
|
+
const FilterFunnel = ({
|
|
2701
|
+
fill = '#000',
|
|
2702
|
+
size = 24,
|
|
2703
|
+
tooltip = 'Filter funnel',
|
|
2704
|
+
...props
|
|
2705
|
+
}) => (0,jsx_runtime_namespaceObject.jsxs)("svg", {
|
|
2706
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2707
|
+
width: `${size}px`,
|
|
2708
|
+
height: `${size}px`,
|
|
2709
|
+
viewBox: "0 0 20 20",
|
|
2710
|
+
fill: "none",
|
|
2711
|
+
...props,
|
|
2712
|
+
children: [(0,jsx_runtime_namespaceObject.jsx)("title", {
|
|
2713
|
+
children: tooltip
|
|
2714
|
+
}), (0,jsx_runtime_namespaceObject.jsx)("path", {
|
|
2715
|
+
d: "M2.73438 2.5C2.605 2.5 2.5 2.605 2.5 2.73438V4.60938C2.5 4.66281 2.51846 4.71461 2.55127 4.75586L8.125 11.723V15.9116C8.125 16.0067 8.182 16.0915 8.26965 16.1276L11.5509 17.4826C11.58 17.4943 11.6106 17.5 11.6406 17.5C11.6866 17.5 11.7313 17.4864 11.7706 17.4606C11.8358 17.417 11.875 17.3439 11.875 17.2656V11.723L17.4487 4.75586C17.4815 4.71461 17.5 4.66281 17.5 4.60938V2.73438C17.5 2.605 17.395 2.5 17.2656 2.5H2.73438ZM2.96875 2.96875H17.0312V4.52698L11.528 11.4062H8.47198L2.96875 4.52698V2.96875ZM8.59375 11.875H11.4062V16.9159L8.59375 15.755V11.875Z",
|
|
2716
|
+
fill: fill
|
|
2717
|
+
}), (0,jsx_runtime_namespaceObject.jsx)("path", {
|
|
2718
|
+
fillRule: "evenodd",
|
|
2719
|
+
clipRule: "evenodd",
|
|
2720
|
+
d: "M2.73438 2.25C2.46693 2.25 2.25 2.46693 2.25 2.73438V4.60938C2.25 4.7201 2.28853 4.82714 2.35605 4.91203L7.875 11.8107V15.6701C7.875 15.6701 7.86214 16.0606 7.91666 16.1667C7.98574 16.3011 8.17447 16.3588 8.17447 16.3588L11.4555 17.7137L11.4574 17.7145C11.5169 17.7385 11.5794 17.75 11.6406 17.75C11.7368 17.75 11.8288 17.7214 11.9076 17.6698L11.9096 17.6684C12.0438 17.5786 12.125 17.4277 12.125 17.2656V11.8107L17.6444 4.91149C17.7119 4.8266 17.75 4.7201 17.75 4.60938V2.73438C17.75 2.46693 17.5331 2.25 17.2656 2.25H2.73438ZM16.7812 3.21875H3.21875V4.43928L8.59214 11.1562H11.4079L16.7812 4.43928V3.21875ZM8.84375 12.125V15.5877L11.1562 16.5422V12.125H8.84375Z",
|
|
2721
|
+
fill: fill
|
|
2722
|
+
})]
|
|
2723
|
+
});
|
|
2724
|
+
const FilterFunnel_ICON_NAME = 'filter-funnel';
|
|
2650
2725
|
;// ./src/components/Icon/icons/Geography.tsx
|
|
2651
2726
|
|
|
2652
2727
|
const Geography = ({
|
|
@@ -3934,6 +4009,10 @@ const Warning_ICON_NAME = 'warning';
|
|
|
3934
4009
|
|
|
3935
4010
|
|
|
3936
4011
|
|
|
4012
|
+
|
|
4013
|
+
|
|
4014
|
+
|
|
4015
|
+
|
|
3937
4016
|
|
|
3938
4017
|
|
|
3939
4018
|
|
|
@@ -11532,10 +11611,14 @@ function Trigger_EMOTION_STRINGIFIED_CSS_ERROR_() { return "You have tried to st
|
|
|
11532
11611
|
|
|
11533
11612
|
|
|
11534
11613
|
var Trigger_ref = true ? {
|
|
11614
|
+
name: "5bhc30",
|
|
11615
|
+
styles: "margin-bottom:8px"
|
|
11616
|
+
} : 0;
|
|
11617
|
+
var Trigger_ref2 = true ? {
|
|
11535
11618
|
name: "jpxugn",
|
|
11536
11619
|
styles: "margin:0 14px"
|
|
11537
11620
|
} : 0;
|
|
11538
|
-
var
|
|
11621
|
+
var Trigger_ref3 = true ? {
|
|
11539
11622
|
name: "ud49p1",
|
|
11540
11623
|
styles: "color:inherit;&::first-letter{text-transform:uppercase;}"
|
|
11541
11624
|
} : 0;
|
|
@@ -11575,8 +11658,9 @@ const Trigger = () => {
|
|
|
11575
11658
|
disabled: disabled,
|
|
11576
11659
|
"data-testid": "daterangepicker",
|
|
11577
11660
|
className: triggerClassname,
|
|
11578
|
-
children: [(0,jsx_runtime_namespaceObject.jsx)(FieldLabel, {
|
|
11661
|
+
children: [label && (0,jsx_runtime_namespaceObject.jsx)(FieldLabel, {
|
|
11579
11662
|
htmlFor: lastFocusedElement === 'from' ? nameFrom : nameTo,
|
|
11663
|
+
css: Trigger_ref,
|
|
11580
11664
|
children: label
|
|
11581
11665
|
}), (0,jsx_runtime_namespaceObject.jsx)(FieldControl, {
|
|
11582
11666
|
children: (0,jsx_runtime_namespaceObject.jsxs)(Wrapper_Wrapper, {
|
|
@@ -11593,7 +11677,7 @@ const Trigger = () => {
|
|
|
11593
11677
|
name: "carrot-right",
|
|
11594
11678
|
size: 18,
|
|
11595
11679
|
color: theme.colors.greyDarker80,
|
|
11596
|
-
css:
|
|
11680
|
+
css: Trigger_ref2
|
|
11597
11681
|
}), (0,jsx_runtime_namespaceObject.jsx)(TriggerInput, {
|
|
11598
11682
|
datepickerType: "to",
|
|
11599
11683
|
onClick: () => {
|
|
@@ -11626,7 +11710,7 @@ const Trigger = () => {
|
|
|
11626
11710
|
children: helperText
|
|
11627
11711
|
}), (0,jsx_runtime_namespaceObject.jsx)(FieldError, {
|
|
11628
11712
|
children: errorMessage ? errorMessage.map((error, index) => (0,jsx_runtime_namespaceObject.jsx)("span", {
|
|
11629
|
-
css:
|
|
11713
|
+
css: Trigger_ref3,
|
|
11630
11714
|
children: error
|
|
11631
11715
|
}, `error-${index}`)) : helperText
|
|
11632
11716
|
}), (0,jsx_runtime_namespaceObject.jsx)(FieldSuccess, {
|
|
@@ -11733,7 +11817,7 @@ const useDateRangePicker = ({
|
|
|
11733
11817
|
setValue,
|
|
11734
11818
|
resetField,
|
|
11735
11819
|
setFocus
|
|
11736
|
-
} = (0,external_react_hook_form_namespaceObject.useFormContext)();
|
|
11820
|
+
} = (0,external_react_hook_form_namespaceObject.useFormContext)() || (0,external_react_hook_form_namespaceObject.useForm)();
|
|
11737
11821
|
const nameFrom = `${_name}From`;
|
|
11738
11822
|
const nameTo = `${_name}To`;
|
|
11739
11823
|
const inputValueFrom = (0,external_react_hook_form_namespaceObject.useWatch)({
|