react-restyle-components 0.2.42 → 0.2.44
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/lib/package.json +7 -5
- package/lib/src/App.css +45 -0
- package/lib/src/assets/styles/colors.css +217 -0
- package/lib/src/assets/styles/decorations.css +15 -0
- package/lib/src/assets/styles/fontface.css +17 -0
- package/lib/src/assets/styles/scrollbars.css +70 -0
- package/lib/src/assets/styles/typography.css +3 -0
- package/lib/src/core-components/atoms/button/button.component.d.ts +0 -3
- package/lib/src/core-components/atoms/button/button.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/button/button.component.js +1 -4
- package/lib/src/core-components/atoms/button/buttonGroup/buttonGroup.component.d.ts +0 -1
- package/lib/src/core-components/atoms/button/buttonGroup/buttonGroup.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/button/buttonGroup/buttonGroup.component.js +3 -2
- package/lib/src/core-components/atoms/check-box/checkBox.component.d.ts +0 -1
- package/lib/src/core-components/atoms/check-box/checkBox.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/check-box/checkBox.component.js +4 -5
- package/lib/src/core-components/atoms/date-picker/date-picker.component.d.ts +0 -1
- package/lib/src/core-components/atoms/date-picker/date-picker.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/date-picker/date-picker.component.js +4 -3
- package/lib/src/core-components/atoms/form/form.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/form/form.component.js +37 -13
- package/lib/src/core-components/atoms/grid/grid.component.d.ts +0 -1
- package/lib/src/core-components/atoms/grid/grid.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/grid/grid.component.js +3 -2
- package/lib/src/core-components/atoms/icons/icons.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/icons/icons.component.js +4 -2
- package/lib/src/core-components/atoms/input/input-otp.component.d.ts +0 -1
- package/lib/src/core-components/atoms/input/input-otp.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/input/input-otp.component.js +3 -2
- package/lib/src/core-components/atoms/input/input-otp.styles.css +35 -0
- package/lib/src/core-components/atoms/input/input.component.d.ts +0 -1
- package/lib/src/core-components/atoms/input/input.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/input/input.component.js +4 -3
- package/lib/src/core-components/atoms/input/input.styles.css +35 -0
- package/lib/src/core-components/atoms/input-dropdown/input-dropdown.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/input-dropdown/input-dropdown.component.js +5 -3
- package/lib/src/core-components/atoms/loader/loader.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/radio/radio.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/stepper/stepper.component.d.ts +0 -1
- package/lib/src/core-components/atoms/stepper/stepper.component.d.ts.map +1 -1
- package/lib/src/core-components/atoms/stepper/stepper.component.js +0 -1
- package/lib/src/core-components/atoms/tabs/tabs.module.css +238 -0
- package/lib/src/core-components/molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component.d.ts +2 -1
- package/lib/src/core-components/molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component.d.ts.map +1 -1
- package/lib/src/core-components/molecules/auto-complete-filter-single-select-multiple-fields-display/auto-complete-filter-single-select-multiple-fields-display.component.js +2 -2
- package/lib/src/core-components/molecules/autocomplete/autocomplete.css +37 -0
- package/lib/src/core-components/molecules/color-picker/color-picker.css +24 -0
- package/lib/src/core-components/molecules/color-picker-modal/color-picker-modal.css +24 -0
- package/lib/src/index.css +110 -0
- package/lib/src/tc.module.css +209 -754
- package/package.json +7 -5
package/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-restyle-components",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.43",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Easy use restyle components",
|
|
6
6
|
"author": {
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"storybook": "storybook dev -p 6006",
|
|
25
25
|
"build-storybook": "rm -rf docs-build && storybook build -o docs-build",
|
|
26
26
|
"deploy-storybook": "gh-pages -d docs-build",
|
|
27
|
+
"serve-storybook": "npm run build-storybook -- -o ./docs-build && npx http-server ./docs-build",
|
|
27
28
|
"lint": "eslint .",
|
|
28
29
|
"lint:fix": "eslint --fix .",
|
|
29
30
|
"prettier": "prettier --write '**/*.{js,jsx}'",
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
"@testing-library/jest-dom": "^5.17.0",
|
|
46
47
|
"@testing-library/user-event": "^13.5.0",
|
|
47
48
|
"@types/jest": "^27.5.2",
|
|
48
|
-
"@types/node": "^
|
|
49
|
+
"@types/node": "^22.10.2",
|
|
49
50
|
"@types/react": "^18.3.11",
|
|
50
51
|
"@types/react-dom": "^18.3.0",
|
|
51
52
|
"buffer": "^6.0.3",
|
|
@@ -83,13 +84,13 @@
|
|
|
83
84
|
"@svgr/webpack": "^8.1.0",
|
|
84
85
|
"@tailwindcss/forms": "^0.5.9",
|
|
85
86
|
"@testing-library/react": "^16.0.1",
|
|
87
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
86
88
|
"@vitest/coverage-c8": "^0.31.4",
|
|
87
89
|
"@vitest/ui": "^0.31.4",
|
|
88
90
|
"autoprefixer": "^10.4.19",
|
|
89
91
|
"copyfiles": "^2.4.1",
|
|
90
92
|
"craco-alias": "^3.0.1",
|
|
91
93
|
"css-loader": "^7.1.2",
|
|
92
|
-
"@vitejs/plugin-react": "^4.2.1",
|
|
93
94
|
"eslint": "^9.14.0",
|
|
94
95
|
"eslint-plugin-storybook": "^0.8.0",
|
|
95
96
|
"gh-pages": "^3.2.3",
|
|
@@ -102,11 +103,11 @@
|
|
|
102
103
|
"sass": "^1.77.5",
|
|
103
104
|
"sass-loader": "^14.2.1",
|
|
104
105
|
"storybook": "^8.0.6",
|
|
106
|
+
"storybook-css-modules": "^1.0.8",
|
|
105
107
|
"storybook-multilevel-sort": "^2.0.1",
|
|
106
108
|
"style-loader": "^4.0.0",
|
|
107
109
|
"tailwindcss": "^3.4.14",
|
|
108
110
|
"ts-jest": "^29.2.5",
|
|
109
|
-
"webpack": "^5.72.0",
|
|
110
111
|
"vite": "^5.0.11",
|
|
111
112
|
"vite-plugin-css-injected-by-js": "^3.1.1",
|
|
112
113
|
"vite-plugin-dts": "^2.3.0",
|
|
@@ -115,7 +116,8 @@
|
|
|
115
116
|
"vite-plugin-svgr": "^4.2.0",
|
|
116
117
|
"vite-tsconfig-paths": "^4.2.0",
|
|
117
118
|
"vitest": "^0.31.4",
|
|
118
|
-
"vitest-dom": "^0.1.0"
|
|
119
|
+
"vitest-dom": "^0.1.0",
|
|
120
|
+
"webpack": "^5.72.0"
|
|
119
121
|
},
|
|
120
122
|
"eslintConfig": {
|
|
121
123
|
"extends": [
|
package/lib/src/App.css
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
.App {
|
|
2
|
+
text-align: center;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.App-logo {
|
|
6
|
+
height: 40vmin;
|
|
7
|
+
pointer-events: none;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
11
|
+
.App-logo {
|
|
12
|
+
animation: App-logo-spin infinite 20s linear;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.App-header {
|
|
17
|
+
background-color: #282c34;
|
|
18
|
+
min-height: 100vh;
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
align-items: center;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
font-size: calc(10px + 2vmin);
|
|
24
|
+
color: white;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.App-link {
|
|
28
|
+
color: #61dafb;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@keyframes App-logo-spin {
|
|
32
|
+
from {
|
|
33
|
+
transform: rotate(0deg);
|
|
34
|
+
}
|
|
35
|
+
to {
|
|
36
|
+
transform: rotate(360deg);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.react-bootstrap-table table {
|
|
41
|
+
table-layout: auto;
|
|
42
|
+
}
|
|
43
|
+
.bg-orange1 {
|
|
44
|
+
background-color: "#EF4444";
|
|
45
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
html.theme--dark {
|
|
2
|
+
color-scheme: dark;
|
|
3
|
+
}
|
|
4
|
+
html.theme--light {
|
|
5
|
+
color-scheme: light;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
:root {
|
|
9
|
+
--B25: #ebf3ff;
|
|
10
|
+
--B50: #dbeaff;
|
|
11
|
+
--B100: #b2d2ff;
|
|
12
|
+
--B200: #9bc5ff;
|
|
13
|
+
--B300: #7ab1fd;
|
|
14
|
+
--B400: #337ee7;
|
|
15
|
+
--B500: #145bbf;
|
|
16
|
+
--B600: #0c489c;
|
|
17
|
+
--B700: #033273;
|
|
18
|
+
--Brand: var(--B700);
|
|
19
|
+
|
|
20
|
+
--A50: #e0feff;
|
|
21
|
+
--A100: #adf8fb;
|
|
22
|
+
--A200: #5ae8ed;
|
|
23
|
+
--A300: #36dbe0;
|
|
24
|
+
--A400: #1ac7cd;
|
|
25
|
+
--A500: #16a8ad;
|
|
26
|
+
--A600: #108b8f;
|
|
27
|
+
--A700: #075255;
|
|
28
|
+
--Accent: var(--A400);
|
|
29
|
+
|
|
30
|
+
--N0: #ffffff;
|
|
31
|
+
--N25: #f9f9f9;
|
|
32
|
+
--N50: #f2f2f2;
|
|
33
|
+
--N75: #e6e6e6;
|
|
34
|
+
--N100: #dbdbdb;
|
|
35
|
+
--N200: #cbcbcb;
|
|
36
|
+
--N300: #b5b5b5;
|
|
37
|
+
--N400: #a4a2a2;
|
|
38
|
+
--N500: #808080;
|
|
39
|
+
--N600: #4d4d4d;
|
|
40
|
+
--N700: #242323;
|
|
41
|
+
--N1000: #000000;
|
|
42
|
+
--Natural: var(--N700);
|
|
43
|
+
|
|
44
|
+
--Gl25: #f7f9fc;
|
|
45
|
+
--Gl50: #e7edf8;
|
|
46
|
+
--Gl100: #d6e1f4;
|
|
47
|
+
--Gl200: #b9c8e7;
|
|
48
|
+
--Gl300: #9babd1;
|
|
49
|
+
--Gl400: #7a89b1;
|
|
50
|
+
--Gl500: #566384;
|
|
51
|
+
--Gl600: #4a5777;
|
|
52
|
+
--Gl700: #3f4b6a;
|
|
53
|
+
--Gl800: #2e3750;
|
|
54
|
+
--Gl850: #262e43;
|
|
55
|
+
--Gl900: #1e2537;
|
|
56
|
+
--Gl950: #1b1d24;
|
|
57
|
+
--Glacious: var(--Gl800);
|
|
58
|
+
|
|
59
|
+
--HO50: #ffded5;
|
|
60
|
+
--HO100: #feb9a5;
|
|
61
|
+
--HO200: #ff906e;
|
|
62
|
+
--HO300: #ff784f;
|
|
63
|
+
--HO400: #ff5d2d;
|
|
64
|
+
--HO500: #eb4d13;
|
|
65
|
+
--HO600: #7e2600;
|
|
66
|
+
--HO700: #421604;
|
|
67
|
+
--HotOrange: var(--HO400);
|
|
68
|
+
|
|
69
|
+
--Y50: #fbf3e0;
|
|
70
|
+
--Y100: #f9e3b6;
|
|
71
|
+
--Y200: #fcc003;
|
|
72
|
+
--Y300: #e4a201;
|
|
73
|
+
--Y400: #ca8501;
|
|
74
|
+
--Y500: #a35803;
|
|
75
|
+
--Y600: #6f3400;
|
|
76
|
+
--Y700: #2e2204;
|
|
77
|
+
--Yellow: var(--Y200);
|
|
78
|
+
|
|
79
|
+
--Gr25: #eafae6;
|
|
80
|
+
--Gr50: #cdefc4;
|
|
81
|
+
--Gr100: #91db8b;
|
|
82
|
+
--Gr200: #45c65a;
|
|
83
|
+
--Gr300: #3ba755;
|
|
84
|
+
--Gr400: #2e844a;
|
|
85
|
+
--Gr500: #22683e;
|
|
86
|
+
--Gr600: #194e31;
|
|
87
|
+
--Gr700: #0e3522;
|
|
88
|
+
--Green: var(--Gr300);
|
|
89
|
+
|
|
90
|
+
--CB50: #cfe9fe;
|
|
91
|
+
--CB100: #90d0fe;
|
|
92
|
+
--CB200: #1ab9ff;
|
|
93
|
+
--CB300: #08abed;
|
|
94
|
+
--CB400: #0d9dda;
|
|
95
|
+
--CB500: #107cad;
|
|
96
|
+
--CB600: #084968;
|
|
97
|
+
--CB700: #023248;
|
|
98
|
+
--CloudBlue: var(--CB500);
|
|
99
|
+
|
|
100
|
+
--I50: #e0e5f8;
|
|
101
|
+
--I100: #bec7f6;
|
|
102
|
+
--I200: #9ea9f1;
|
|
103
|
+
--I300: #8e9bef;
|
|
104
|
+
--I400: #7f8ced;
|
|
105
|
+
--I500: #5867e8;
|
|
106
|
+
--I600: #3a49da;
|
|
107
|
+
--I700: #260f8f;
|
|
108
|
+
--Indigo: var(--I500);
|
|
109
|
+
|
|
110
|
+
--Pu50: #ece1f9;
|
|
111
|
+
--Pu100: #d7bff2;
|
|
112
|
+
--Pu200: #c29ef1;
|
|
113
|
+
--Pu300: #b78def;
|
|
114
|
+
--Pu400: #ad7bee;
|
|
115
|
+
--Pu500: #9050e9;
|
|
116
|
+
--Pu600: #7526e3;
|
|
117
|
+
--Pu700: #401075;
|
|
118
|
+
--Purple: var(--Pu500);
|
|
119
|
+
|
|
120
|
+
--V50: #f2defe;
|
|
121
|
+
--V100: #e5b9fe;
|
|
122
|
+
--V200: #d892fe;
|
|
123
|
+
--V300: #d384fe;
|
|
124
|
+
--V400: #cb65ff;
|
|
125
|
+
--V500: #ba01ff;
|
|
126
|
+
--V600: #7b119a;
|
|
127
|
+
--V700: #3d0157;
|
|
128
|
+
--Violet: var(--V500);
|
|
129
|
+
|
|
130
|
+
--Pi50: #fddde3;
|
|
131
|
+
--Pi100: #fdb6c5;
|
|
132
|
+
--Pi200: #fe8aa7;
|
|
133
|
+
--Pi300: #fe7298;
|
|
134
|
+
--Pi400: #ff538a;
|
|
135
|
+
--Pi500: #e3066a;
|
|
136
|
+
--Pi600: #b60554;
|
|
137
|
+
--Pi700: #61022a;
|
|
138
|
+
--Pink: var(--Pi400);
|
|
139
|
+
|
|
140
|
+
--R25: #fcece8;
|
|
141
|
+
--R50: #ffdfd7;
|
|
142
|
+
--R100: #feb8ab;
|
|
143
|
+
--R200: #fe8f7d;
|
|
144
|
+
--R300: #fe7765;
|
|
145
|
+
--R400: #fe5c4c;
|
|
146
|
+
--R500: #ee3e3e;
|
|
147
|
+
--R600: #ba0517;
|
|
148
|
+
--R700: #640103;
|
|
149
|
+
--Red: var(--R400);
|
|
150
|
+
|
|
151
|
+
--color-impersonation-start: #ec4b4b;
|
|
152
|
+
--color-bloomberg: #fe9c29;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.theme--dark {
|
|
156
|
+
--global-focus-color: var(--B300);
|
|
157
|
+
--global-window-border-color: var(--Gl800);
|
|
158
|
+
--global-text-primary: var(--N0);
|
|
159
|
+
--global-text-primary-inverse: var(--N1000);
|
|
160
|
+
--global-text-secondary: var(--Gl100);
|
|
161
|
+
--global-input-disabled-color: var(--Gl600);
|
|
162
|
+
--global-input-bg: var(--Gl800);
|
|
163
|
+
--global-input-disabled-bg: var(--Gl800);
|
|
164
|
+
--global-input-disabled-label-color: var(--Gl600);
|
|
165
|
+
--global-input-error-highlight: var(--R400);
|
|
166
|
+
--global-input-placeholder-color: rgb(from var(--N0) r g b / 0.4);
|
|
167
|
+
--global-input-caret-color: var(--B300);
|
|
168
|
+
--global-input-error-caret-color: var(--R400);
|
|
169
|
+
--global-input-border-color: var(--Gl600);
|
|
170
|
+
--global-input-color: var(--N0);
|
|
171
|
+
--global-input-label-color: var(--Gl100);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.theme--light {
|
|
175
|
+
--global-focus-color: var(--B400);
|
|
176
|
+
--global-window-border-color: var(--N100);
|
|
177
|
+
--global-text-primary: var(--N1000);
|
|
178
|
+
--global-text-primary-inverse: var(--N0);
|
|
179
|
+
--global-text-secondary: var(--N700);
|
|
180
|
+
--global-input-disabled-color: var(--N300);
|
|
181
|
+
--global-input-bg: var(--N0);
|
|
182
|
+
--global-input-disabled-bg: var(--N50);
|
|
183
|
+
--global-input-disabled-label-color: var(--N300);
|
|
184
|
+
--global-input-error-highlight: var(--R500);
|
|
185
|
+
--global-input-placeholder-color: var(--N300);
|
|
186
|
+
--global-input-caret-color: var(--B500);
|
|
187
|
+
--global-input-error-caret-color: var(--R500);
|
|
188
|
+
--global-input-border-color: var(--N200);
|
|
189
|
+
--global-input-color: var(--N1000);
|
|
190
|
+
--global-input-label-color: var(--N700);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/* Menu colors - used for Dropdowns, Context Menus, etc */
|
|
194
|
+
.theme--dark {
|
|
195
|
+
--menu-panel-bg-color: var(--Gl700);
|
|
196
|
+
--menu-panel-border-color: var(--Gl500);
|
|
197
|
+
--menu-button-bg-color-hover: var(--Gl500);
|
|
198
|
+
--menu-heading-color: var(--A400);
|
|
199
|
+
--menu-toggle_bg: var(--Gl400);
|
|
200
|
+
--menu-toggle_bg_disabled: var(--Gl800);
|
|
201
|
+
--menu-toggle_thumb_bg_disabled: var(--Gl500);
|
|
202
|
+
--menu-toggle_bg_active: var(--A400);
|
|
203
|
+
--menu-toggle_thumb_bg: var(--N0);
|
|
204
|
+
--menu-panel-shadow-color: rgba(0, 0, 0, 0.4);
|
|
205
|
+
}
|
|
206
|
+
.theme--light {
|
|
207
|
+
--menu-panel-bg-color: var(--N0);
|
|
208
|
+
--menu-panel-border-color: var(--N100);
|
|
209
|
+
--menu-button-bg-color-hover: var(--N50);
|
|
210
|
+
--menu-heading-color: var(--A500);
|
|
211
|
+
--menu-toggle_bg: var(--N200);
|
|
212
|
+
--menu-toggle_bg_disabled: var(--N50);
|
|
213
|
+
--menu-toggle_thumb_bg_disabled: var(--N300);
|
|
214
|
+
--menu-toggle_bg_active: var(--A500);
|
|
215
|
+
--menu-toggle_thumb_bg: var(--N0);
|
|
216
|
+
--menu-panel-shadow-color: rgba(0, 0, 0, 0.15);
|
|
217
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Consuming apps can expect these variables to exist and use them directly - much like the colors.css file.
|
|
3
|
+
We shouldn't resort to using this for every case where we want 2 or more components to share a style.
|
|
4
|
+
*/
|
|
5
|
+
:root {
|
|
6
|
+
--menu-panel-border: 1px solid var(--menu-panel-border-color);
|
|
7
|
+
--menu-panel-shadow: 0px 16px 40px var(--menu-panel-shadow-color);
|
|
8
|
+
--menu-panel-radius: 4px;
|
|
9
|
+
--menu-panel-vertical-padding: 4px;
|
|
10
|
+
--menu-clickable-color: var(--global-text-primary);
|
|
11
|
+
--menu-clickable-font-size: 12px;
|
|
12
|
+
--menu-clickable-font-weight: 400;
|
|
13
|
+
--menu-clickable-disabled: 0.5;
|
|
14
|
+
--menu-clickable-vertical-padding: 6px;
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* // Inter (variable weight fonts) Main typeface used throughout the app */
|
|
2
|
+
@font-face {
|
|
3
|
+
font-family: 'Inter var';
|
|
4
|
+
font-weight: 100 900;
|
|
5
|
+
font-display: swap;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
font-named-instance: 'Regular';
|
|
8
|
+
src: url('../fonts/Inter-roman.var.woff2?v=3.19') format('woff2');
|
|
9
|
+
}
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: 'Inter var';
|
|
12
|
+
font-weight: 100 900;
|
|
13
|
+
font-display: swap;
|
|
14
|
+
font-style: italic;
|
|
15
|
+
font-named-instance: 'Italic';
|
|
16
|
+
src: url('../fonts/Inter-italic.var.woff2?v=3.19') format('woff2');
|
|
17
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
.theme--dark {
|
|
2
|
+
--scrollbar-background: transparent;
|
|
3
|
+
--scrollbar-button-display: none;
|
|
4
|
+
--scrollbar-thumb: rgb(142 142 142);
|
|
5
|
+
}
|
|
6
|
+
.theme--light {
|
|
7
|
+
--scrollbar-background: transparent;
|
|
8
|
+
--scrollbar-button-display: none;
|
|
9
|
+
--scrollbar-thumb: rgb(163 179 221);
|
|
10
|
+
}
|
|
11
|
+
/* The bar/track */
|
|
12
|
+
::-webkit-scrollbar {
|
|
13
|
+
background: var(--scrollbar-background);
|
|
14
|
+
width: var(--scrollbar-size, 20px);
|
|
15
|
+
height: var(--scrollbar-size, 20px);
|
|
16
|
+
}
|
|
17
|
+
/* The thumb/drag/pill */
|
|
18
|
+
::-webkit-scrollbar-thumb {
|
|
19
|
+
border: calc(var(--scrollbar-size, 20px) * var(--scrollbar-inset, 0.2)) solid transparent;
|
|
20
|
+
border-radius: calc(var(--scrollbar-size, 20px) / 2);
|
|
21
|
+
background-color: rgb(from var(--scrollbar-thumb) r g b / 0.3);
|
|
22
|
+
background-clip: padding-box;
|
|
23
|
+
}
|
|
24
|
+
::-webkit-scrollbar-thumb:hover {
|
|
25
|
+
background-color: rgb(from var(--scrollbar-thumb) r g b / 0.7);
|
|
26
|
+
}
|
|
27
|
+
/* The buttons */
|
|
28
|
+
::-webkit-scrollbar-button:single-button {
|
|
29
|
+
display: var(--scrollbar-button-display, block);
|
|
30
|
+
background-color: transparent;
|
|
31
|
+
background-position: center center;
|
|
32
|
+
background-repeat: no-repeat;
|
|
33
|
+
background-size: var(--scrollbar-size, 20px);
|
|
34
|
+
width: var(--scrollbar-size, 20px);
|
|
35
|
+
height: var(--scrollbar-size, 20px);
|
|
36
|
+
}
|
|
37
|
+
::-webkit-scrollbar-button:single-button:hover {
|
|
38
|
+
background-color: rgb(from var(--scrollbar-thumb) r g b / 0.25);
|
|
39
|
+
}
|
|
40
|
+
::-webkit-scrollbar-button:not(:single-button) {
|
|
41
|
+
display: none;
|
|
42
|
+
}
|
|
43
|
+
/* Left button */
|
|
44
|
+
.theme--dark ::-webkit-scrollbar-button:horizontal:start {
|
|
45
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(185, 200, 231)'><polygon points='12,6 12,14 8,10'/></svg>");
|
|
46
|
+
}
|
|
47
|
+
.theme--light ::-webkit-scrollbar-button:horizontal:start {
|
|
48
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(77, 77, 77)'><polygon points='12,6 12,14 8,10'/></svg>");
|
|
49
|
+
}
|
|
50
|
+
/* Right button */
|
|
51
|
+
.theme--dark ::-webkit-scrollbar-button:horizontal:end {
|
|
52
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(185, 200, 231)'><polygon points='8,6 8,14 12,10'/></svg>");
|
|
53
|
+
}
|
|
54
|
+
.theme--light ::-webkit-scrollbar-button:horizontal:end {
|
|
55
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(77, 77, 77)'><polygon points='8,6 8,14 12,10'/></svg>");
|
|
56
|
+
}
|
|
57
|
+
/* Up button */
|
|
58
|
+
.theme--dark ::-webkit-scrollbar-button:vertical:start {
|
|
59
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(185, 200, 231)'><polygon points='6,12 14,12 10,8'/></svg>");
|
|
60
|
+
}
|
|
61
|
+
.theme--light ::-webkit-scrollbar-button:vertical:start {
|
|
62
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(77, 77, 77)'><polygon points='6,12 14,12 10,8'/></svg>");
|
|
63
|
+
}
|
|
64
|
+
/* Down button */
|
|
65
|
+
.theme--dark ::-webkit-scrollbar-button:vertical:end {
|
|
66
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(185, 200, 231)'><polygon points='6,8 14,8 10,12'/></svg>");
|
|
67
|
+
}
|
|
68
|
+
.theme--light ::-webkit-scrollbar-button:vertical:end {
|
|
69
|
+
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(77, 77, 77)'><polygon points='6,8 14,8 10,12'/></svg>");
|
|
70
|
+
}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ButtonProps } from './Button.types';
|
|
3
|
-
/**
|
|
4
|
-
* It's a `<button>button</button>`. Pass in regular button props such as onClick as well as any of the props defined here.
|
|
5
|
-
*/
|
|
6
3
|
export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
|
|
7
4
|
//# sourceMappingURL=button.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.component.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/atoms/button/button.component.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"button.component.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/atoms/button/button.component.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAK3C,eAAO,MAAM,MAAM,uIA0DlB,CAAC"}
|
|
@@ -3,14 +3,11 @@ import { forwardRef } from 'react';
|
|
|
3
3
|
import { Tooltip } from '../tooltip/tooltip.component';
|
|
4
4
|
import s from '../../../tc.module.css';
|
|
5
5
|
import { cn } from '../../../core-utils';
|
|
6
|
-
/**
|
|
7
|
-
* It's a `<button>button</button>`. Pass in regular button props such as onClick as well as any of the props defined here.
|
|
8
|
-
*/
|
|
9
6
|
export const Button = forwardRef(({ variant = 'solid', tooltip, disabled = false, type = 'button', className, children, ...args }, ref) => {
|
|
10
7
|
const buttonColorClass = variant === 'solid'
|
|
11
8
|
? cn(s['text-white'], s['bg-[#007BFF]'], s['hover:bg-[#007BFF]'], s['hover:shadow-lg'], s['text-white'])
|
|
12
9
|
: cn(s['dark:text-white'], s['text-black'], s['border'], s['border-gray-400'], s['hover:shadow-lg']);
|
|
13
|
-
const button = (_jsx("button", { ref: ref, ...args, className: cn(s['rounded-100px'], s['px-3'], s['py-1'], s['text-md'],
|
|
10
|
+
const button = (_jsx("button", { ref: ref, ...args, className: cn(s['rounded-100px'], s['px-3'], s['py-1'], s['text-md'], s['pt-2'], s['pb-2'], s['font-nunitoSansRegular'], disabled ? s['opacity-50'] : s['opacity-100'], buttonColorClass, className), type: type, disabled: disabled, children: children }));
|
|
14
11
|
if (tooltip) {
|
|
15
12
|
return _jsx(Tooltip, { content: tooltip, children: button });
|
|
16
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buttonGroup.component.d.ts","sourceRoot":"","sources":["../../../../../../src/core-components/atoms/button/buttonGroup/buttonGroup.component.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,SAAS,EAAC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"buttonGroup.component.d.ts","sourceRoot":"","sources":["../../../../../../src/core-components/atoms/button/buttonGroup/buttonGroup.component.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,SAAS,EAAC,MAAM,OAAO,CAAC;AAIhC,eAAO,MAAM,WAAW;cAKZ,SAAS;;;6CAepB,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import '../../../../tc.module.css';
|
|
3
|
-
|
|
2
|
+
import s from '../../../../tc.module.css';
|
|
3
|
+
import { cn } from '../../../../core-utils';
|
|
4
|
+
export const ButtonGroup = ({ children, orientation = 'horizontal', className, }) => (_jsx("div", { className: cn(s.flex, orientation == 'horizontal' ? s['flex-row'] : s['flex-col'], s['w-fit'], s['gap-2'], className), children: children }));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkBox.component.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/atoms/check-box/checkBox.component.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"checkBox.component.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/atoms/check-box/checkBox.component.tsx"],"names":[],"mappings":"AAMA,UAAU,aAAa;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;CAChC;AAED,eAAO,MAAM,QAAQ,0CAKlB,aAAa,4CAmCf,CAAC"}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useState } from 'react';
|
|
3
|
-
import '../../../tc.module.css';
|
|
3
|
+
import s from '../../../tc.module.css';
|
|
4
|
+
import { cn } from '../../../core-utils';
|
|
4
5
|
import { UnCheckbox, CheckedBox } from '../../../library/assets/svg';
|
|
5
|
-
// import UnCheckbox from '../../../library/assets/svg/UnCheckbox.svg?react';
|
|
6
|
-
// import CheckedBox from '../../../library/assets/svg/CheckedBox.svg?react';
|
|
7
6
|
import { InputWrapper } from '../form/form.component';
|
|
8
7
|
export const CheckBox = ({ title = 'Banks', data = [{ title: 'SBI Bank', checked: false }], className, onChange, }) => {
|
|
9
8
|
const [list, setList] = useState(data);
|
|
10
9
|
const width = 20;
|
|
11
|
-
return (_jsx(InputWrapper, { label: title, children: list?.map((item, index) => (_jsxs("div", { className: `${
|
|
10
|
+
return (_jsx(InputWrapper, { label: title, children: list?.map((item, index) => (_jsxs("div", { className: `${cn(s.flex, s['flex-row'], s['items-center'])} ${className}`, onClick: () => {
|
|
12
11
|
const result = list?.map((e, i) => {
|
|
13
12
|
if (i === index)
|
|
14
13
|
return { ...e, checked: !item.checked };
|
|
@@ -17,5 +16,5 @@ export const CheckBox = ({ title = 'Banks', data = [{ title: 'SBI Bank', checked
|
|
|
17
16
|
});
|
|
18
17
|
setList(result);
|
|
19
18
|
onChange(result?.filter((item) => item.checked));
|
|
20
|
-
}, children: [_jsx("div", { className:
|
|
19
|
+
}, children: [_jsx("div", { className: cn(s.flex, s['mt-1']), children: item.checked ? (_jsx(CheckedBox, { width: width, height: width, fill: "#E7503D", stroke: "E7503D" })) : (_jsx(UnCheckbox, { width: width, height: width })) }), _jsx("span", { children: item?.title })] }, index))) }));
|
|
21
20
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-picker.component.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/atoms/date-picker/date-picker.component.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"date-picker.component.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/atoms/date-picker/date-picker.component.tsx"],"names":[],"mappings":"AAEA,OAAO,4CAA4C,CAAC;AAOpD,UAAU,eAAe;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,cAAc,mEAOxB,eAAe,4CAkDjB,CAAC"}
|
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useState, forwardRef } from 'react';
|
|
3
|
-
import '../../../tc.module.css';
|
|
4
3
|
import DatePicker from 'react-datepicker';
|
|
5
4
|
import 'react-datepicker/dist/react-datepicker.css';
|
|
6
5
|
import { DatePickerSvg } from '../../../library/assets/svg';
|
|
7
6
|
import dayjs from 'dayjs';
|
|
8
7
|
import { InputWrapper } from '../form/form.component';
|
|
8
|
+
import s from '../../../tc.module.css';
|
|
9
|
+
import { cn } from '../../../core-utils';
|
|
9
10
|
export const DatePickerComp = ({ title = 'Title', className, disable, value, showFormat = 'yyyy-MM-dd', placeholder = 'Select Date', }) => {
|
|
10
11
|
const [pickedDate, setPickedDate] = useState(value && dayjs(value).toDate());
|
|
11
12
|
const CustomInput = forwardRef((props, ref) => {
|
|
12
|
-
return (_jsxs("div", { onClick: !disable && props.onClick, ref: ref, className:
|
|
13
|
+
return (_jsxs("div", { onClick: !disable && props.onClick, ref: ref, className: cn(s['border-gray-light'], s['place-items-center'], s['border'], s['rounded-md'], s['px-2'], s.flex), children: [_jsx("label", { className: cn(s['mr-3'], s['font-arimaRegular'], s['text-primaryCharcoal'], s['text-lg']), children: props.value || props.placeholder }), _jsx(DatePickerSvg, { width: 15, height: 15 })] }));
|
|
13
14
|
});
|
|
14
15
|
CustomInput.displayName = 'CustomInput';
|
|
15
16
|
const handleChanges = (date) => {
|
|
16
17
|
setPickedDate(date);
|
|
17
18
|
};
|
|
18
|
-
return (_jsx(InputWrapper, { label: title, children: _jsx("div", { className:
|
|
19
|
+
return (_jsx(InputWrapper, { label: title, children: _jsx("div", { className: cn(s.flex, s['zIndex-999'], className), children: _jsx(DatePicker, { selected: pickedDate || new Date(), dateFormat: showFormat, placeholder: placeholder, onChange: handleChanges, customInput: _jsx(CustomInput, {}) }) }) }));
|
|
19
20
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form.component.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/atoms/form/form.component.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"form.component.d.ts","sourceRoot":"","sources":["../../../../../src/core-components/atoms/form/form.component.tsx"],"names":[],"mappings":"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"}
|