@rabelo-digital/ds-rd 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,48 +1,338 @@
1
- 'use strict';
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);
2
19
 
3
- var chunkCZMDBTZY_js = require('../chunk-CZMDBTZY.js');
20
+ // src/tokens/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ breakpoints: () => breakpoints,
24
+ elevation: () => elevation,
25
+ mediaQuery: () => mediaQuery,
26
+ motion: () => motion,
27
+ primitiveColors: () => primitiveColors,
28
+ radii: () => radii,
29
+ semanticColors: () => semanticColors,
30
+ spacing: () => spacing,
31
+ typography: () => typography,
32
+ zIndex: () => zIndex
33
+ });
34
+ module.exports = __toCommonJS(index_exports);
4
35
 
36
+ // src/tokens/colors.primitive.ts
37
+ var primitiveColors = {
38
+ blue: {
39
+ 50: "#EAF4FB",
40
+ 100: "#C5E0F2",
41
+ 200: "#9BCCE9",
42
+ 300: "#6DB7DF",
43
+ 400: "#42A2D5",
44
+ 500: "#1B8ECB",
45
+ 600: "#1170A8",
46
+ 700: "#02548B",
47
+ 800: "#013E6A",
48
+ 900: "#012849"
49
+ },
50
+ teal: {
51
+ 50: "#E9FAF6",
52
+ 100: "#C0F1E6",
53
+ 200: "#93E7D5",
54
+ 300: "#62DAC2",
55
+ 400: "#34CEAF",
56
+ 500: "#16B597",
57
+ 600: "#0E9278",
58
+ 700: "#087059",
59
+ 800: "#044E3D",
60
+ 900: "#012E24"
61
+ },
62
+ orange: {
63
+ 50: "#FFF0EB",
64
+ 100: "#FFDDD4",
65
+ 200: "#FFC0AE",
66
+ 300: "#FF9F87",
67
+ 400: "#FF7358",
68
+ 500: "#FF3C00",
69
+ 600: "#D83200",
70
+ 700: "#B02700",
71
+ 800: "#881D00",
72
+ 900: "#601300"
73
+ },
74
+ red: {
75
+ 50: "#FEF2F2",
76
+ 100: "#FEE2E2",
77
+ 200: "#FECACA",
78
+ 300: "#FCA5A5",
79
+ 400: "#F87171",
80
+ 500: "#EF4444",
81
+ 600: "#DC2626",
82
+ 700: "#B91C1C",
83
+ 800: "#991B1B",
84
+ 900: "#7F1D1D"
85
+ },
86
+ green: {
87
+ 50: "#ECFDF5",
88
+ 100: "#D1FAE5",
89
+ 200: "#A7F3D0",
90
+ 300: "#6EE7B7",
91
+ 400: "#34D399",
92
+ 500: "#10B981",
93
+ 600: "#059669",
94
+ 700: "#047857",
95
+ 800: "#065F46",
96
+ 900: "#064E3B"
97
+ },
98
+ yellow: {
99
+ 50: "#FFFBEB",
100
+ 100: "#FEF3C7",
101
+ 200: "#FDE68A",
102
+ 300: "#FCD34D",
103
+ 400: "#FBBF24",
104
+ 500: "#F59E0B",
105
+ 600: "#D97706",
106
+ 700: "#B45309",
107
+ 800: "#92400E",
108
+ 900: "#78350F"
109
+ },
110
+ gray: {
111
+ 50: "#F8F9FA",
112
+ 100: "#E9ECEF",
113
+ 200: "#DEE2E6",
114
+ 300: "#CED4DA",
115
+ 400: "#ADB5BD",
116
+ 500: "#6C757D",
117
+ 600: "#495057",
118
+ 700: "#343A40",
119
+ 800: "#212529",
120
+ 900: "#111315"
121
+ },
122
+ white: "#FFFFFF",
123
+ black: "#000000"
124
+ };
5
125
 
126
+ // src/tokens/colors.semantic.ts
127
+ var semanticColors = {
128
+ primary: {
129
+ default: primitiveColors.blue[700],
130
+ hover: primitiveColors.blue[600],
131
+ active: primitiveColors.blue[800],
132
+ subtle: primitiveColors.blue[50],
133
+ muted: primitiveColors.blue[100],
134
+ on: primitiveColors.white
135
+ },
136
+ secondary: {
137
+ default: primitiveColors.teal[500],
138
+ hover: primitiveColors.teal[600],
139
+ active: primitiveColors.teal[700],
140
+ subtle: primitiveColors.teal[50],
141
+ muted: primitiveColors.teal[100],
142
+ on: primitiveColors.white
143
+ },
144
+ accent: {
145
+ default: primitiveColors.orange[500],
146
+ hover: primitiveColors.orange[600],
147
+ active: primitiveColors.orange[700],
148
+ subtle: primitiveColors.orange[50],
149
+ on: primitiveColors.white
150
+ },
151
+ success: {
152
+ default: primitiveColors.green[600],
153
+ hover: primitiveColors.green[700],
154
+ subtle: primitiveColors.green[50],
155
+ muted: primitiveColors.green[100],
156
+ on: primitiveColors.white
157
+ },
158
+ warning: {
159
+ default: primitiveColors.yellow[500],
160
+ hover: primitiveColors.yellow[600],
161
+ subtle: primitiveColors.yellow[50],
162
+ muted: primitiveColors.yellow[100],
163
+ on: primitiveColors.gray[900]
164
+ },
165
+ error: {
166
+ default: primitiveColors.red[600],
167
+ hover: primitiveColors.red[700],
168
+ subtle: primitiveColors.red[50],
169
+ muted: primitiveColors.red[100],
170
+ on: primitiveColors.white
171
+ },
172
+ info: {
173
+ default: primitiveColors.blue[500],
174
+ hover: primitiveColors.blue[600],
175
+ subtle: primitiveColors.blue[50],
176
+ muted: primitiveColors.blue[100],
177
+ on: primitiveColors.white
178
+ },
179
+ background: {
180
+ default: primitiveColors.white,
181
+ subtle: primitiveColors.gray[50],
182
+ muted: primitiveColors.gray[100],
183
+ overlay: "rgba(0, 0, 0, 0.5)"
184
+ },
185
+ surface: {
186
+ default: primitiveColors.white,
187
+ raised: primitiveColors.white,
188
+ overlay: primitiveColors.white
189
+ },
190
+ text: {
191
+ default: primitiveColors.gray[800],
192
+ muted: primitiveColors.gray[500],
193
+ subtle: primitiveColors.gray[400],
194
+ disabled: primitiveColors.gray[300],
195
+ inverse: primitiveColors.white,
196
+ link: primitiveColors.blue[700],
197
+ linkHover: primitiveColors.blue[600]
198
+ },
199
+ border: {
200
+ default: primitiveColors.gray[200],
201
+ strong: primitiveColors.gray[300],
202
+ muted: primitiveColors.gray[100],
203
+ focus: primitiveColors.blue[500],
204
+ error: primitiveColors.red[500]
205
+ },
206
+ disabled: {
207
+ background: primitiveColors.gray[100],
208
+ text: primitiveColors.gray[400],
209
+ border: primitiveColors.gray[200]
210
+ }
211
+ };
6
212
 
7
- Object.defineProperty(exports, "breakpoints", {
8
- enumerable: true,
9
- get: function () { return chunkCZMDBTZY_js.breakpoints; }
10
- });
11
- Object.defineProperty(exports, "elevation", {
12
- enumerable: true,
13
- get: function () { return chunkCZMDBTZY_js.elevation; }
14
- });
15
- Object.defineProperty(exports, "mediaQuery", {
16
- enumerable: true,
17
- get: function () { return chunkCZMDBTZY_js.mediaQuery; }
18
- });
19
- Object.defineProperty(exports, "motion", {
20
- enumerable: true,
21
- get: function () { return chunkCZMDBTZY_js.motion; }
22
- });
23
- Object.defineProperty(exports, "primitiveColors", {
24
- enumerable: true,
25
- get: function () { return chunkCZMDBTZY_js.primitiveColors; }
26
- });
27
- Object.defineProperty(exports, "radii", {
28
- enumerable: true,
29
- get: function () { return chunkCZMDBTZY_js.radii; }
30
- });
31
- Object.defineProperty(exports, "semanticColors", {
32
- enumerable: true,
33
- get: function () { return chunkCZMDBTZY_js.semanticColors; }
34
- });
35
- Object.defineProperty(exports, "spacing", {
36
- enumerable: true,
37
- get: function () { return chunkCZMDBTZY_js.spacing; }
38
- });
39
- Object.defineProperty(exports, "typography", {
40
- enumerable: true,
41
- get: function () { return chunkCZMDBTZY_js.typography; }
42
- });
43
- Object.defineProperty(exports, "zIndex", {
44
- enumerable: true,
45
- get: function () { return chunkCZMDBTZY_js.zIndex; }
46
- });
213
+ // src/tokens/spacing.ts
214
+ var spacing = {
215
+ 0: "0px",
216
+ 1: "4px",
217
+ 2: "8px",
218
+ 3: "12px",
219
+ 4: "16px",
220
+ 5: "20px",
221
+ 6: "24px",
222
+ 8: "32px",
223
+ 10: "40px",
224
+ 12: "48px",
225
+ 16: "64px",
226
+ 24: "96px",
227
+ 32: "128px"
228
+ };
229
+
230
+ // src/tokens/typography.ts
231
+ var typography = {
232
+ fontFamily: {
233
+ base: "'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif",
234
+ heading: "'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif",
235
+ mono: "'JetBrains Mono', 'Fira Code', 'Courier New', monospace"
236
+ },
237
+ fontSize: {
238
+ xs: "0.75rem",
239
+ // 12px
240
+ sm: "0.875rem",
241
+ // 14px
242
+ md: "1rem",
243
+ // 16px
244
+ lg: "1.125rem",
245
+ // 18px
246
+ xl: "1.25rem",
247
+ // 20px
248
+ "2xl": "1.5rem",
249
+ // 24px
250
+ "3xl": "1.875rem",
251
+ // 30px
252
+ "4xl": "2.25rem"
253
+ // 36px
254
+ },
255
+ fontWeight: {
256
+ regular: "400",
257
+ medium: "500",
258
+ semibold: "600",
259
+ bold: "700"
260
+ },
261
+ lineHeight: {
262
+ tight: "1.25",
263
+ snug: "1.375",
264
+ normal: "1.5",
265
+ relaxed: "1.625",
266
+ loose: "2"
267
+ },
268
+ letterSpacing: {
269
+ tight: "-0.025em",
270
+ normal: "0em",
271
+ wide: "0.025em",
272
+ wider: "0.05em"
273
+ }
274
+ };
275
+
276
+ // src/tokens/radii.ts
277
+ var radii = {
278
+ none: "0px",
279
+ sm: "2px",
280
+ md: "4px",
281
+ lg: "8px",
282
+ xl: "12px",
283
+ "2xl": "16px",
284
+ full: "9999px"
285
+ };
286
+
287
+ // src/tokens/elevation.ts
288
+ var elevation = {
289
+ none: "none",
290
+ sm: "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
291
+ md: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
292
+ lg: "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
293
+ xl: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)",
294
+ "2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.25)"
295
+ };
296
+
297
+ // src/tokens/zIndex.ts
298
+ var zIndex = {
299
+ base: 0,
300
+ raised: 1,
301
+ dropdown: 1e3,
302
+ sticky: 1020,
303
+ overlay: 1040,
304
+ modal: 1050,
305
+ toast: 1060,
306
+ tooltip: 1070
307
+ };
308
+
309
+ // src/tokens/motion.ts
310
+ var motion = {
311
+ duration: {
312
+ fast: "100ms",
313
+ normal: "200ms",
314
+ slow: "300ms",
315
+ slower: "500ms"
316
+ },
317
+ easing: {
318
+ easeIn: "cubic-bezier(0.4, 0, 1, 1)",
319
+ easeOut: "cubic-bezier(0, 0, 0.2, 1)",
320
+ easeInOut: "cubic-bezier(0.4, 0, 0.2, 1)",
321
+ linear: "linear",
322
+ spring: "cubic-bezier(0.34, 1.56, 0.64, 1)"
323
+ }
324
+ };
325
+
326
+ // src/tokens/breakpoints.ts
327
+ var breakpoints = {
328
+ xs: 0,
329
+ sm: 576,
330
+ md: 768,
331
+ lg: 992,
332
+ xl: 1200,
333
+ xxl: 1400
334
+ };
335
+ function mediaQuery(bp) {
336
+ return `@media (min-width: ${breakpoints[bp]}px)`;
337
+ }
47
338
  //# sourceMappingURL=index.js.map
48
- //# sourceMappingURL=index.js.map
@@ -1 +1,7 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/tokens/index.ts", "../../src/tokens/colors.primitive.ts", "../../src/tokens/colors.semantic.ts", "../../src/tokens/spacing.ts", "../../src/tokens/typography.ts", "../../src/tokens/radii.ts", "../../src/tokens/elevation.ts", "../../src/tokens/zIndex.ts", "../../src/tokens/motion.ts", "../../src/tokens/breakpoints.ts"],
4
+ "sourcesContent": ["export { primitiveColors } from \"./colors.primitive\";\nexport type { PrimitiveColors } from \"./colors.primitive\";\n\nexport { semanticColors } from \"./colors.semantic\";\nexport type { SemanticColors } from \"./colors.semantic\";\n\nexport { spacing } from \"./spacing\";\nexport type { SpacingKey, SpacingValue } from \"./spacing\";\n\nexport { typography } from \"./typography\";\nexport type { Typography } from \"./typography\";\n\nexport { radii } from \"./radii\";\nexport type { RadiiKey } from \"./radii\";\n\nexport { elevation } from \"./elevation\";\nexport type { ElevationKey } from \"./elevation\";\n\nexport { zIndex } from \"./zIndex\";\nexport type { ZIndexKey } from \"./zIndex\";\n\nexport { motion } from \"./motion\";\nexport type { Motion } from \"./motion\";\n\nexport { breakpoints, mediaQuery } from \"./breakpoints\";\nexport type { BreakpointKey } from \"./breakpoints\";\n", "export const primitiveColors = {\n blue: {\n 50: \"#EAF4FB\",\n 100: \"#C5E0F2\",\n 200: \"#9BCCE9\",\n 300: \"#6DB7DF\",\n 400: \"#42A2D5\",\n 500: \"#1B8ECB\",\n 600: \"#1170A8\",\n 700: \"#02548B\",\n 800: \"#013E6A\",\n 900: \"#012849\"\n },\n teal: {\n 50: \"#E9FAF6\",\n 100: \"#C0F1E6\",\n 200: \"#93E7D5\",\n 300: \"#62DAC2\",\n 400: \"#34CEAF\",\n 500: \"#16B597\",\n 600: \"#0E9278\",\n 700: \"#087059\",\n 800: \"#044E3D\",\n 900: \"#012E24\"\n },\n orange: {\n 50: \"#FFF0EB\",\n 100: \"#FFDDD4\",\n 200: \"#FFC0AE\",\n 300: \"#FF9F87\",\n 400: \"#FF7358\",\n 500: \"#FF3C00\",\n 600: \"#D83200\",\n 700: \"#B02700\",\n 800: \"#881D00\",\n 900: \"#601300\"\n },\n red: {\n 50: \"#FEF2F2\",\n 100: \"#FEE2E2\",\n 200: \"#FECACA\",\n 300: \"#FCA5A5\",\n 400: \"#F87171\",\n 500: \"#EF4444\",\n 600: \"#DC2626\",\n 700: \"#B91C1C\",\n 800: \"#991B1B\",\n 900: \"#7F1D1D\"\n },\n green: {\n 50: \"#ECFDF5\",\n 100: \"#D1FAE5\",\n 200: \"#A7F3D0\",\n 300: \"#6EE7B7\",\n 400: \"#34D399\",\n 500: \"#10B981\",\n 600: \"#059669\",\n 700: \"#047857\",\n 800: \"#065F46\",\n 900: \"#064E3B\"\n },\n yellow: {\n 50: \"#FFFBEB\",\n 100: \"#FEF3C7\",\n 200: \"#FDE68A\",\n 300: \"#FCD34D\",\n 400: \"#FBBF24\",\n 500: \"#F59E0B\",\n 600: \"#D97706\",\n 700: \"#B45309\",\n 800: \"#92400E\",\n 900: \"#78350F\"\n },\n gray: {\n 50: \"#F8F9FA\",\n 100: \"#E9ECEF\",\n 200: \"#DEE2E6\",\n 300: \"#CED4DA\",\n 400: \"#ADB5BD\",\n 500: \"#6C757D\",\n 600: \"#495057\",\n 700: \"#343A40\",\n 800: \"#212529\",\n 900: \"#111315\"\n },\n white: \"#FFFFFF\",\n black: \"#000000\"\n} as const;\n\nexport type PrimitiveColors = typeof primitiveColors;\n", "import { primitiveColors } from \"./colors.primitive\";\n\nexport const semanticColors = {\n primary: {\n default: primitiveColors.blue[700],\n hover: primitiveColors.blue[600],\n active: primitiveColors.blue[800],\n subtle: primitiveColors.blue[50],\n muted: primitiveColors.blue[100],\n on: primitiveColors.white\n },\n secondary: {\n default: primitiveColors.teal[500],\n hover: primitiveColors.teal[600],\n active: primitiveColors.teal[700],\n subtle: primitiveColors.teal[50],\n muted: primitiveColors.teal[100],\n on: primitiveColors.white\n },\n accent: {\n default: primitiveColors.orange[500],\n hover: primitiveColors.orange[600],\n active: primitiveColors.orange[700],\n subtle: primitiveColors.orange[50],\n on: primitiveColors.white\n },\n success: {\n default: primitiveColors.green[600],\n hover: primitiveColors.green[700],\n subtle: primitiveColors.green[50],\n muted: primitiveColors.green[100],\n on: primitiveColors.white\n },\n warning: {\n default: primitiveColors.yellow[500],\n hover: primitiveColors.yellow[600],\n subtle: primitiveColors.yellow[50],\n muted: primitiveColors.yellow[100],\n on: primitiveColors.gray[900]\n },\n error: {\n default: primitiveColors.red[600],\n hover: primitiveColors.red[700],\n subtle: primitiveColors.red[50],\n muted: primitiveColors.red[100],\n on: primitiveColors.white\n },\n info: {\n default: primitiveColors.blue[500],\n hover: primitiveColors.blue[600],\n subtle: primitiveColors.blue[50],\n muted: primitiveColors.blue[100],\n on: primitiveColors.white\n },\n background: {\n default: primitiveColors.white,\n subtle: primitiveColors.gray[50],\n muted: primitiveColors.gray[100],\n overlay: \"rgba(0, 0, 0, 0.5)\"\n },\n surface: {\n default: primitiveColors.white,\n raised: primitiveColors.white,\n overlay: primitiveColors.white\n },\n text: {\n default: primitiveColors.gray[800],\n muted: primitiveColors.gray[500],\n subtle: primitiveColors.gray[400],\n disabled: primitiveColors.gray[300],\n inverse: primitiveColors.white,\n link: primitiveColors.blue[700],\n linkHover: primitiveColors.blue[600]\n },\n border: {\n default: primitiveColors.gray[200],\n strong: primitiveColors.gray[300],\n muted: primitiveColors.gray[100],\n focus: primitiveColors.blue[500],\n error: primitiveColors.red[500]\n },\n disabled: {\n background: primitiveColors.gray[100],\n text: primitiveColors.gray[400],\n border: primitiveColors.gray[200]\n }\n} as const;\n\nexport type SemanticColors = typeof semanticColors;\n", "// 4px base unit\nexport const spacing = {\n 0: \"0px\",\n 1: \"4px\",\n 2: \"8px\",\n 3: \"12px\",\n 4: \"16px\",\n 5: \"20px\",\n 6: \"24px\",\n 8: \"32px\",\n 10: \"40px\",\n 12: \"48px\",\n 16: \"64px\",\n 24: \"96px\",\n 32: \"128px\"\n} as const;\n\nexport type SpacingKey = keyof typeof spacing;\nexport type SpacingValue = (typeof spacing)[SpacingKey];\n", "export const typography = {\n fontFamily: {\n base: \"'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif\",\n heading: \"'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif\",\n mono: \"'JetBrains Mono', 'Fira Code', 'Courier New', monospace\"\n },\n fontSize: {\n xs: \"0.75rem\", // 12px\n sm: \"0.875rem\", // 14px\n md: \"1rem\", // 16px\n lg: \"1.125rem\", // 18px\n xl: \"1.25rem\", // 20px\n \"2xl\": \"1.5rem\", // 24px\n \"3xl\": \"1.875rem\", // 30px\n \"4xl\": \"2.25rem\" // 36px\n },\n fontWeight: {\n regular: \"400\",\n medium: \"500\",\n semibold: \"600\",\n bold: \"700\"\n },\n lineHeight: {\n tight: \"1.25\",\n snug: \"1.375\",\n normal: \"1.5\",\n relaxed: \"1.625\",\n loose: \"2\"\n },\n letterSpacing: {\n tight: \"-0.025em\",\n normal: \"0em\",\n wide: \"0.025em\",\n wider: \"0.05em\"\n }\n} as const;\n\nexport type Typography = typeof typography;\n", "export const radii = {\n none: \"0px\",\n sm: \"2px\",\n md: \"4px\",\n lg: \"8px\",\n xl: \"12px\",\n \"2xl\": \"16px\",\n full: \"9999px\"\n} as const;\n\nexport type RadiiKey = keyof typeof radii;\n", "export const elevation = {\n none: \"none\",\n sm: \"0 1px 2px 0 rgba(0, 0, 0, 0.05)\",\n md: \"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)\",\n lg: \"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)\",\n xl: \"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)\",\n \"2xl\": \"0 25px 50px -12px rgba(0, 0, 0, 0.25)\"\n} as const;\n\nexport type ElevationKey = keyof typeof elevation;\n", "export const zIndex = {\n base: 0,\n raised: 1,\n dropdown: 1000,\n sticky: 1020,\n overlay: 1040,\n modal: 1050,\n toast: 1060,\n tooltip: 1070\n} as const;\n\nexport type ZIndexKey = keyof typeof zIndex;\n", "export const motion = {\n duration: {\n fast: \"100ms\",\n normal: \"200ms\",\n slow: \"300ms\",\n slower: \"500ms\"\n },\n easing: {\n easeIn: \"cubic-bezier(0.4, 0, 1, 1)\",\n easeOut: \"cubic-bezier(0, 0, 0.2, 1)\",\n easeInOut: \"cubic-bezier(0.4, 0, 0.2, 1)\",\n linear: \"linear\",\n spring: \"cubic-bezier(0.34, 1.56, 0.64, 1)\"\n }\n} as const;\n\nexport type Motion = typeof motion;\n", "// Matches Bootstrap grid for migration continuity\nexport const breakpoints = {\n xs: 0,\n sm: 576,\n md: 768,\n lg: 992,\n xl: 1200,\n xxl: 1400\n} as const;\n\nexport type BreakpointKey = keyof typeof breakpoints;\n\nexport function mediaQuery(bp: BreakpointKey): string {\n return `@media (min-width: ${breakpoints[bp]}px)`;\n}\n"],
5
+ "mappings": "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",
6
+ "names": []
7
+ }