@x-plat/design-system 0.1.2 → 0.1.3

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 (69) hide show
  1. package/dist/components/Accordion/index.cjs +131 -0
  2. package/dist/components/Accordion/index.css +51 -0
  3. package/dist/components/Accordion/index.d.cts +16 -0
  4. package/dist/components/Accordion/index.d.ts +16 -0
  5. package/dist/components/Accordion/index.js +94 -0
  6. package/dist/components/Alert/index.cjs +72 -0
  7. package/dist/components/Alert/index.css +60 -0
  8. package/dist/components/Alert/index.d.cts +12 -0
  9. package/dist/components/Alert/index.d.ts +12 -0
  10. package/dist/components/Alert/index.js +45 -0
  11. package/dist/components/Avatar/index.cjs +196 -0
  12. package/dist/components/Avatar/index.css +321 -0
  13. package/dist/components/Avatar/index.d.cts +133 -0
  14. package/dist/components/Avatar/index.d.ts +133 -0
  15. package/dist/components/Avatar/index.js +169 -0
  16. package/dist/components/Badge/index.cjs +200 -0
  17. package/dist/components/Badge/index.css +307 -0
  18. package/dist/components/Badge/index.d.cts +133 -0
  19. package/dist/components/Badge/index.d.ts +133 -0
  20. package/dist/components/Badge/index.js +173 -0
  21. package/dist/components/Breadcrumb/index.cjs +60 -0
  22. package/dist/components/Breadcrumb/index.css +37 -0
  23. package/dist/components/Breadcrumb/index.d.cts +15 -0
  24. package/dist/components/Breadcrumb/index.d.ts +15 -0
  25. package/dist/components/Breadcrumb/index.js +33 -0
  26. package/dist/components/Chart/index.cjs +6 -3
  27. package/dist/components/Chart/index.js +6 -3
  28. package/dist/components/DatePicker/index.cjs +2 -0
  29. package/dist/components/DatePicker/index.js +2 -0
  30. package/dist/components/Divider/index.cjs +61 -0
  31. package/dist/components/Divider/index.css +15 -0
  32. package/dist/components/Divider/index.d.cts +10 -0
  33. package/dist/components/Divider/index.d.ts +10 -0
  34. package/dist/components/Divider/index.js +34 -0
  35. package/dist/components/ImageSelector/index.cjs +9 -3
  36. package/dist/components/ImageSelector/index.js +9 -3
  37. package/dist/components/Modal/index.cjs +2 -0
  38. package/dist/components/Modal/index.js +2 -0
  39. package/dist/components/Pagination/index.cjs +261 -0
  40. package/dist/components/Pagination/index.css +325 -0
  41. package/dist/components/Pagination/index.d.cts +133 -0
  42. package/dist/components/Pagination/index.d.ts +133 -0
  43. package/dist/components/Pagination/index.js +234 -0
  44. package/dist/components/Progress/index.cjs +218 -0
  45. package/dist/components/Progress/index.css +313 -0
  46. package/dist/components/Progress/index.d.cts +133 -0
  47. package/dist/components/Progress/index.d.ts +133 -0
  48. package/dist/components/Progress/index.js +191 -0
  49. package/dist/components/Skeleton/index.cjs +65 -0
  50. package/dist/components/Skeleton/index.css +27 -0
  51. package/dist/components/Skeleton/index.d.cts +12 -0
  52. package/dist/components/Skeleton/index.d.ts +12 -0
  53. package/dist/components/Skeleton/index.js +38 -0
  54. package/dist/components/Spinner/index.cjs +222 -0
  55. package/dist/components/Spinner/index.css +317 -0
  56. package/dist/components/Spinner/index.d.cts +130 -0
  57. package/dist/components/Spinner/index.d.ts +130 -0
  58. package/dist/components/Spinner/index.js +195 -0
  59. package/dist/components/index.cjs +1014 -592
  60. package/dist/components/index.css +4290 -2507
  61. package/dist/components/index.d.cts +12 -2
  62. package/dist/components/index.d.ts +12 -2
  63. package/dist/components/index.js +1003 -591
  64. package/dist/index.cjs +2010 -1588
  65. package/dist/index.css +4289 -2506
  66. package/dist/index.d.cts +11 -1
  67. package/dist/index.d.ts +11 -1
  68. package/dist/index.js +1999 -1587
  69. package/package.json +1 -1
@@ -0,0 +1,261 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/components/Pagination/index.ts
21
+ var Pagination_exports = {};
22
+ __export(Pagination_exports, {
23
+ Pagination: () => Pagination_default
24
+ });
25
+ module.exports = __toCommonJS(Pagination_exports);
26
+
27
+ // src/tokens/colors.ts
28
+ var colors = {
29
+ xplat: {
30
+ red: {
31
+ 50: "#FFF0F0",
32
+ 100: "#FFDDDE",
33
+ 200: "#FFC1C2",
34
+ 300: "#FF9698",
35
+ 400: "#FF5A5D",
36
+ 500: "#FF272B",
37
+ 600: "#F80409",
38
+ 700: "#D40105",
39
+ 800: "#AE0609",
40
+ 900: "#900C0F"
41
+ },
42
+ green: {
43
+ 50: "#E5F6EA",
44
+ 100: "#C1E7CC",
45
+ 200: "#98D8AC",
46
+ 300: "#6CCA8B",
47
+ 400: "#47BE72",
48
+ 500: "#10B259",
49
+ 600: "#00A34F",
50
+ 700: "#009143",
51
+ 800: "#007F38",
52
+ 900: "#006024"
53
+ },
54
+ orange: {
55
+ 50: "#FFF8EC",
56
+ 100: "#FFF0D3",
57
+ 200: "#FFDDA5",
58
+ 300: "#FFC46D",
59
+ 400: "#FF9F32",
60
+ 500: "#FF820A",
61
+ 600: "#FF6900",
62
+ 700: "#CC4B02",
63
+ 800: "#A13A0B",
64
+ 900: "#82320C"
65
+ },
66
+ yellow: {
67
+ 50: "#FFFDE7",
68
+ 100: "#FFFAC1",
69
+ 200: "#FFF186",
70
+ 300: "#FFE041",
71
+ 400: "#FFCC0D",
72
+ 500: "#F0B100",
73
+ 600: "#D18800",
74
+ 700: "#A66002",
75
+ 800: "#894B0A",
76
+ 900: "#743D0F"
77
+ },
78
+ blue: {
79
+ 50: "#F1F4FD",
80
+ 100: "#DFE7FA",
81
+ 200: "#C5D4F8",
82
+ 300: "#9EB8F2",
83
+ 400: "#7093EA",
84
+ 500: "#4D6DE3",
85
+ 600: "#3950D7",
86
+ 700: "#303EC5",
87
+ 800: "#2D35A0",
88
+ 900: "#29317F"
89
+ },
90
+ lightblue: {
91
+ 50: "#EEFAFF",
92
+ 100: "#D9F4FF",
93
+ 200: "#BBEDFF",
94
+ 300: "#8DE3FF",
95
+ 400: "#57D0FF",
96
+ 500: "#30B6FF",
97
+ 600: "#1999F7",
98
+ 700: "#1280E3",
99
+ 800: "#1566B8",
100
+ 900: "#175791"
101
+ },
102
+ purple: {
103
+ 50: "#FBF6FE",
104
+ 100: "#F5EAFD",
105
+ 200: "#EDD8FC",
106
+ 300: "#E0BAF8",
107
+ 400: "#CD8DF3",
108
+ 500: "#B961EB",
109
+ 600: "#A541DC",
110
+ 700: "#9230C5",
111
+ 800: "#782B9E",
112
+ 900: "#62247F"
113
+ },
114
+ pink: {
115
+ 50: "#FFF4FE",
116
+ 100: "#FFE7FD",
117
+ 200: "#FFCFFA",
118
+ 300: "#FEA9F1",
119
+ 400: "#FD75E7",
120
+ 500: "#F553DA",
121
+ 600: "#D821B6",
122
+ 700: "#B31892",
123
+ 800: "#921676",
124
+ 900: "#781761"
125
+ },
126
+ neutral: {
127
+ 50: "#FAFAFA",
128
+ 100: "#F5F5F5",
129
+ 200: "#E5E5E5",
130
+ 300: "#D4D4D4",
131
+ 400: "#A1A1A1",
132
+ 500: "#737373",
133
+ 600: "#525252",
134
+ 700: "#404040",
135
+ 800: "#262626",
136
+ 900: "#171717"
137
+ },
138
+ black: "#000000",
139
+ white: "#FFFFFF"
140
+ },
141
+ test: {
142
+ default: "#ffffff"
143
+ }
144
+ };
145
+
146
+ // src/util/getColor.ts
147
+ var getColorClass = (namespace, palette, shade) => {
148
+ const namespaceMap = colors[namespace];
149
+ const paletteMap = namespaceMap[palette];
150
+ const hasShade = paletteMap && typeof paletteMap === "object" && shade !== void 0 && shade in paletteMap;
151
+ return `${String(namespace)}-${String(palette)}${hasShade ? `-${String(shade)}` : ""}`;
152
+ };
153
+
154
+ // node_modules/clsx/dist/clsx.mjs
155
+ function r(e) {
156
+ var t, f, n = "";
157
+ if ("string" == typeof e || "number" == typeof e) n += e;
158
+ else if ("object" == typeof e) if (Array.isArray(e)) {
159
+ var o = e.length;
160
+ for (t = 0; t < o; t++) e[t] && (f = r(e[t])) && (n && (n += " "), n += f);
161
+ } else for (f in e) e[f] && (n && (n += " "), n += f);
162
+ return n;
163
+ }
164
+ function clsx() {
165
+ for (var e, t, f = 0, n = "", o = arguments.length; f < o; f++) (e = arguments[f]) && (t = r(e)) && (n && (n += " "), n += t);
166
+ return n;
167
+ }
168
+ var clsx_default = clsx;
169
+
170
+ // src/components/Pagination/Pagination.tsx
171
+ var import_jsx_runtime = require("react/jsx-runtime");
172
+ function getPageRange(current, totalPages, siblingCount) {
173
+ const totalNumbers = siblingCount * 2 + 5;
174
+ if (totalPages <= totalNumbers) {
175
+ return Array.from({ length: totalPages }, (_, i) => i + 1);
176
+ }
177
+ const leftSibling = Math.max(current - siblingCount, 1);
178
+ const rightSibling = Math.min(current + siblingCount, totalPages);
179
+ const showLeftDots = leftSibling > 3;
180
+ const showRightDots = rightSibling < totalPages - 2;
181
+ if (!showLeftDots && showRightDots) {
182
+ const leftCount = siblingCount * 2 + 3;
183
+ const leftRange = Array.from({ length: leftCount }, (_, i) => i + 1);
184
+ return [...leftRange, "...", totalPages];
185
+ }
186
+ if (showLeftDots && !showRightDots) {
187
+ const rightCount = siblingCount * 2 + 3;
188
+ const rightRange = Array.from({ length: rightCount }, (_, i) => totalPages - rightCount + i + 1);
189
+ return [1, "...", ...rightRange];
190
+ }
191
+ const middleRange = Array.from(
192
+ { length: rightSibling - leftSibling + 1 },
193
+ (_, i) => leftSibling + i
194
+ );
195
+ return [1, "...", ...middleRange, "...", totalPages];
196
+ }
197
+ var Pagination = (props) => {
198
+ const {
199
+ current,
200
+ total,
201
+ pageSize = 10,
202
+ siblingCount = 1,
203
+ onChange,
204
+ colorNamespace = "xplat",
205
+ color = "blue",
206
+ colorDepth,
207
+ className
208
+ } = props;
209
+ const colorClass = getColorClass(
210
+ colorNamespace,
211
+ color,
212
+ colorDepth ?? 500
213
+ );
214
+ const totalPages = Math.max(1, Math.ceil(total / pageSize));
215
+ const pages = getPageRange(current, totalPages, siblingCount);
216
+ const handleClick = (page) => {
217
+ if (page !== current && page >= 1 && page <= totalPages) {
218
+ onChange?.(page);
219
+ }
220
+ };
221
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("nav", { className: clsx_default("lib-xplat-pagination", className), "aria-label": "\uD398\uC774\uC9C0 \uB124\uBE44\uAC8C\uC774\uC158", children: [
222
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
223
+ "button",
224
+ {
225
+ className: "page-btn prev",
226
+ disabled: current <= 1,
227
+ onClick: () => handleClick(current - 1),
228
+ "aria-label": "\uC774\uC804 \uD398\uC774\uC9C0",
229
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: "16", height: "16", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" }) })
230
+ }
231
+ ),
232
+ pages.map(
233
+ (page, i) => page === "..." ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "dots", children: "..." }, `dots-${i}`) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
234
+ "button",
235
+ {
236
+ className: clsx_default("page-btn", colorClass, { active: page === current }),
237
+ onClick: () => handleClick(page),
238
+ "aria-current": page === current ? "page" : void 0,
239
+ children: page
240
+ },
241
+ page
242
+ )
243
+ ),
244
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
245
+ "button",
246
+ {
247
+ className: "page-btn next",
248
+ disabled: current >= totalPages,
249
+ onClick: () => handleClick(current + 1),
250
+ "aria-label": "\uB2E4\uC74C \uD398\uC774\uC9C0",
251
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: "16", height: "16", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) })
252
+ }
253
+ )
254
+ ] });
255
+ };
256
+ Pagination.displayName = "Pagination";
257
+ var Pagination_default = Pagination;
258
+ // Annotate the CommonJS export names for ESM import in node:
259
+ 0 && (module.exports = {
260
+ Pagination
261
+ });
@@ -0,0 +1,325 @@
1
+ /* src/components/Pagination/pagination.scss */
2
+ .lib-xplat-pagination {
3
+ display: inline-flex;
4
+ align-items: center;
5
+ gap: 4px;
6
+ }
7
+ .lib-xplat-pagination .dots {
8
+ display: flex;
9
+ align-items: center;
10
+ justify-content: center;
11
+ width: 32px;
12
+ height: 32px;
13
+ font-size: 14px;
14
+ color: #737373;
15
+ user-select: none;
16
+ }
17
+ .lib-xplat-pagination .page-btn {
18
+ display: flex;
19
+ align-items: center;
20
+ justify-content: center;
21
+ min-width: 32px;
22
+ height: 32px;
23
+ padding: 0 6px;
24
+ border: none;
25
+ border-radius: 0.375rem;
26
+ background: none;
27
+ font-size: 14px;
28
+ cursor: pointer;
29
+ color: #404040;
30
+ transition: background-color 0.2s, color 0.2s;
31
+ }
32
+ .lib-xplat-pagination .page-btn:hover:not(:disabled):not(.active) {
33
+ background-color: #F5F5F5;
34
+ }
35
+ .lib-xplat-pagination .page-btn:disabled {
36
+ cursor: not-allowed;
37
+ opacity: 0.4;
38
+ }
39
+ .lib-xplat-pagination .page-btn.active {
40
+ color: #FFFFFF;
41
+ font-weight: 600;
42
+ }
43
+ .lib-xplat-pagination .page-btn.active.xplat-red-50 {
44
+ background-color: #FFF0F0;
45
+ }
46
+ .lib-xplat-pagination .page-btn.active.xplat-red-100 {
47
+ background-color: #FFDDDE;
48
+ }
49
+ .lib-xplat-pagination .page-btn.active.xplat-red-200 {
50
+ background-color: #FFC1C2;
51
+ }
52
+ .lib-xplat-pagination .page-btn.active.xplat-red-300 {
53
+ background-color: #FF9698;
54
+ }
55
+ .lib-xplat-pagination .page-btn.active.xplat-red-400 {
56
+ background-color: #FF5A5D;
57
+ }
58
+ .lib-xplat-pagination .page-btn.active.xplat-red-500 {
59
+ background-color: #FF272B;
60
+ }
61
+ .lib-xplat-pagination .page-btn.active.xplat-red-600 {
62
+ background-color: #F80409;
63
+ }
64
+ .lib-xplat-pagination .page-btn.active.xplat-red-700 {
65
+ background-color: #D40105;
66
+ }
67
+ .lib-xplat-pagination .page-btn.active.xplat-red-800 {
68
+ background-color: #AE0609;
69
+ }
70
+ .lib-xplat-pagination .page-btn.active.xplat-red-900 {
71
+ background-color: #900C0F;
72
+ }
73
+ .lib-xplat-pagination .page-btn.active.xplat-green-50 {
74
+ background-color: #E5F6EA;
75
+ }
76
+ .lib-xplat-pagination .page-btn.active.xplat-green-100 {
77
+ background-color: #C1E7CC;
78
+ }
79
+ .lib-xplat-pagination .page-btn.active.xplat-green-200 {
80
+ background-color: #98D8AC;
81
+ }
82
+ .lib-xplat-pagination .page-btn.active.xplat-green-300 {
83
+ background-color: #6CCA8B;
84
+ }
85
+ .lib-xplat-pagination .page-btn.active.xplat-green-400 {
86
+ background-color: #47BE72;
87
+ }
88
+ .lib-xplat-pagination .page-btn.active.xplat-green-500 {
89
+ background-color: #10B259;
90
+ }
91
+ .lib-xplat-pagination .page-btn.active.xplat-green-600 {
92
+ background-color: #00A34F;
93
+ }
94
+ .lib-xplat-pagination .page-btn.active.xplat-green-700 {
95
+ background-color: #009143;
96
+ }
97
+ .lib-xplat-pagination .page-btn.active.xplat-green-800 {
98
+ background-color: #007F38;
99
+ }
100
+ .lib-xplat-pagination .page-btn.active.xplat-green-900 {
101
+ background-color: #006024;
102
+ }
103
+ .lib-xplat-pagination .page-btn.active.xplat-orange-50 {
104
+ background-color: #FFF8EC;
105
+ }
106
+ .lib-xplat-pagination .page-btn.active.xplat-orange-100 {
107
+ background-color: #FFF0D3;
108
+ }
109
+ .lib-xplat-pagination .page-btn.active.xplat-orange-200 {
110
+ background-color: #FFDDA5;
111
+ }
112
+ .lib-xplat-pagination .page-btn.active.xplat-orange-300 {
113
+ background-color: #FFC46D;
114
+ }
115
+ .lib-xplat-pagination .page-btn.active.xplat-orange-400 {
116
+ background-color: #FF9F32;
117
+ }
118
+ .lib-xplat-pagination .page-btn.active.xplat-orange-500 {
119
+ background-color: #FF820A;
120
+ }
121
+ .lib-xplat-pagination .page-btn.active.xplat-orange-600 {
122
+ background-color: #FF6900;
123
+ }
124
+ .lib-xplat-pagination .page-btn.active.xplat-orange-700 {
125
+ background-color: #CC4B02;
126
+ }
127
+ .lib-xplat-pagination .page-btn.active.xplat-orange-800 {
128
+ background-color: #A13A0B;
129
+ }
130
+ .lib-xplat-pagination .page-btn.active.xplat-orange-900 {
131
+ background-color: #82320C;
132
+ }
133
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-50 {
134
+ background-color: #FFFDE7;
135
+ }
136
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-100 {
137
+ background-color: #FFFAC1;
138
+ }
139
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-200 {
140
+ background-color: #FFF186;
141
+ }
142
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-300 {
143
+ background-color: #FFE041;
144
+ }
145
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-400 {
146
+ background-color: #FFCC0D;
147
+ }
148
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-500 {
149
+ background-color: #F0B100;
150
+ }
151
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-600 {
152
+ background-color: #D18800;
153
+ }
154
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-700 {
155
+ background-color: #A66002;
156
+ }
157
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-800 {
158
+ background-color: #894B0A;
159
+ }
160
+ .lib-xplat-pagination .page-btn.active.xplat-yellow-900 {
161
+ background-color: #743D0F;
162
+ }
163
+ .lib-xplat-pagination .page-btn.active.xplat-blue-50 {
164
+ background-color: #F1F4FD;
165
+ }
166
+ .lib-xplat-pagination .page-btn.active.xplat-blue-100 {
167
+ background-color: #DFE7FA;
168
+ }
169
+ .lib-xplat-pagination .page-btn.active.xplat-blue-200 {
170
+ background-color: #C5D4F8;
171
+ }
172
+ .lib-xplat-pagination .page-btn.active.xplat-blue-300 {
173
+ background-color: #9EB8F2;
174
+ }
175
+ .lib-xplat-pagination .page-btn.active.xplat-blue-400 {
176
+ background-color: #7093EA;
177
+ }
178
+ .lib-xplat-pagination .page-btn.active.xplat-blue-500 {
179
+ background-color: #4D6DE3;
180
+ }
181
+ .lib-xplat-pagination .page-btn.active.xplat-blue-600 {
182
+ background-color: #3950D7;
183
+ }
184
+ .lib-xplat-pagination .page-btn.active.xplat-blue-700 {
185
+ background-color: #303EC5;
186
+ }
187
+ .lib-xplat-pagination .page-btn.active.xplat-blue-800 {
188
+ background-color: #2D35A0;
189
+ }
190
+ .lib-xplat-pagination .page-btn.active.xplat-blue-900 {
191
+ background-color: #29317F;
192
+ }
193
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-50 {
194
+ background-color: #EEFAFF;
195
+ }
196
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-100 {
197
+ background-color: #D9F4FF;
198
+ }
199
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-200 {
200
+ background-color: #BBEDFF;
201
+ }
202
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-300 {
203
+ background-color: #8DE3FF;
204
+ }
205
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-400 {
206
+ background-color: #57D0FF;
207
+ }
208
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-500 {
209
+ background-color: #30B6FF;
210
+ }
211
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-600 {
212
+ background-color: #1999F7;
213
+ }
214
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-700 {
215
+ background-color: #1280E3;
216
+ }
217
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-800 {
218
+ background-color: #1566B8;
219
+ }
220
+ .lib-xplat-pagination .page-btn.active.xplat-lightblue-900 {
221
+ background-color: #175791;
222
+ }
223
+ .lib-xplat-pagination .page-btn.active.xplat-purple-50 {
224
+ background-color: #FBF6FE;
225
+ }
226
+ .lib-xplat-pagination .page-btn.active.xplat-purple-100 {
227
+ background-color: #F5EAFD;
228
+ }
229
+ .lib-xplat-pagination .page-btn.active.xplat-purple-200 {
230
+ background-color: #EDD8FC;
231
+ }
232
+ .lib-xplat-pagination .page-btn.active.xplat-purple-300 {
233
+ background-color: #E0BAF8;
234
+ }
235
+ .lib-xplat-pagination .page-btn.active.xplat-purple-400 {
236
+ background-color: #CD8DF3;
237
+ }
238
+ .lib-xplat-pagination .page-btn.active.xplat-purple-500 {
239
+ background-color: #B961EB;
240
+ }
241
+ .lib-xplat-pagination .page-btn.active.xplat-purple-600 {
242
+ background-color: #A541DC;
243
+ }
244
+ .lib-xplat-pagination .page-btn.active.xplat-purple-700 {
245
+ background-color: #9230C5;
246
+ }
247
+ .lib-xplat-pagination .page-btn.active.xplat-purple-800 {
248
+ background-color: #782B9E;
249
+ }
250
+ .lib-xplat-pagination .page-btn.active.xplat-purple-900 {
251
+ background-color: #62247F;
252
+ }
253
+ .lib-xplat-pagination .page-btn.active.xplat-pink-50 {
254
+ background-color: #FFF4FE;
255
+ }
256
+ .lib-xplat-pagination .page-btn.active.xplat-pink-100 {
257
+ background-color: #FFE7FD;
258
+ }
259
+ .lib-xplat-pagination .page-btn.active.xplat-pink-200 {
260
+ background-color: #FFCFFA;
261
+ }
262
+ .lib-xplat-pagination .page-btn.active.xplat-pink-300 {
263
+ background-color: #FEA9F1;
264
+ }
265
+ .lib-xplat-pagination .page-btn.active.xplat-pink-400 {
266
+ background-color: #FD75E7;
267
+ }
268
+ .lib-xplat-pagination .page-btn.active.xplat-pink-500 {
269
+ background-color: #F553DA;
270
+ }
271
+ .lib-xplat-pagination .page-btn.active.xplat-pink-600 {
272
+ background-color: #D821B6;
273
+ }
274
+ .lib-xplat-pagination .page-btn.active.xplat-pink-700 {
275
+ background-color: #B31892;
276
+ }
277
+ .lib-xplat-pagination .page-btn.active.xplat-pink-800 {
278
+ background-color: #921676;
279
+ }
280
+ .lib-xplat-pagination .page-btn.active.xplat-pink-900 {
281
+ background-color: #781761;
282
+ }
283
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-50 {
284
+ background-color: #FAFAFA;
285
+ }
286
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-100 {
287
+ background-color: #F5F5F5;
288
+ }
289
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-200 {
290
+ background-color: #E5E5E5;
291
+ }
292
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-300 {
293
+ background-color: #D4D4D4;
294
+ }
295
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-400 {
296
+ background-color: #A1A1A1;
297
+ }
298
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-500 {
299
+ background-color: #737373;
300
+ }
301
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-600 {
302
+ background-color: #525252;
303
+ }
304
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-700 {
305
+ background-color: #404040;
306
+ }
307
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-800 {
308
+ background-color: #262626;
309
+ }
310
+ .lib-xplat-pagination .page-btn.active.xplat-neutral-900 {
311
+ background-color: #171717;
312
+ }
313
+ .lib-xplat-pagination .page-btn.active.xplat-black {
314
+ background-color: #000000;
315
+ }
316
+ .lib-xplat-pagination .page-btn.active.xplat-white {
317
+ background-color: #FFFFFF;
318
+ }
319
+ .lib-xplat-pagination .page-btn.active.test-default {
320
+ background-color: #ffffff;
321
+ }
322
+ .lib-xplat-pagination .page-btn svg {
323
+ width: 16px;
324
+ height: 16px;
325
+ }