@slimr/css 2.1.11 → 2.1.12
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/README.md +28 -8
- package/cjs/createClass.d.ts +43 -0
- package/cjs/{src/createClass.js → createClass.js} +88 -132
- package/cjs/createClass.js.map +1 -0
- package/cjs/createClass.ts +92 -211
- package/{esm/src → cjs}/index.d.ts +1 -0
- package/cjs/{src/index.js → index.js} +1 -0
- package/cjs/index.js.map +1 -0
- package/cjs/index.ts +1 -0
- package/cjs/{src/createClass.d.ts → shorthandProps.d.ts} +7 -47
- package/cjs/shorthandProps.js +51 -0
- package/cjs/shorthandProps.js.map +1 -0
- package/cjs/shorthandProps.ts +118 -0
- package/esm/createClass.d.ts +43 -0
- package/esm/{src/createClass.js → createClass.js} +85 -128
- package/esm/createClass.js.map +1 -0
- package/esm/createClass.ts +92 -211
- package/{cjs/src → esm}/index.d.ts +1 -0
- package/esm/{src/index.js → index.js} +1 -0
- package/esm/index.js.map +1 -0
- package/esm/index.ts +1 -0
- package/esm/{src/createClass.d.ts → shorthandProps.d.ts} +7 -47
- package/esm/shorthandProps.js +47 -0
- package/esm/shorthandProps.js.map +1 -0
- package/esm/shorthandProps.ts +118 -0
- package/package.json +4 -1
- package/src/createClass.ts +92 -211
- package/src/index.ts +1 -0
- package/src/shorthandProps.ts +118 -0
- package/tsconfig.json +1 -1
- package/cjs/src/createClass.js.map +0 -1
- package/cjs/src/index.js.map +0 -1
- package/esm/src/createClass.js.map +0 -1
- package/esm/src/index.js.map +0 -1
package/esm/createClass.ts
CHANGED
|
@@ -1,14 +1,98 @@
|
|
|
1
|
-
|
|
2
|
-
export const breakPoints = ['30em', '48em', '62em', '80em', '96em']
|
|
1
|
+
import {T2SProps, t2s} from '@slimr/util'
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
type allowableAny = any
|
|
3
|
+
import {expandShorthands} from './shorthandProps.js'
|
|
6
4
|
|
|
7
|
-
/**
|
|
8
|
-
|
|
5
|
+
/**
|
|
6
|
+
* Injects css to the page head
|
|
7
|
+
*
|
|
8
|
+
* - Lazy: Will not be added until the component mounts, if called from within a component
|
|
9
|
+
* - Batches dom changes for better performance
|
|
10
|
+
* - Has local cache to recall prior adds, to reduce duplicates and dom changes
|
|
11
|
+
*
|
|
12
|
+
* @param css - css to be injected
|
|
13
|
+
* @returns void
|
|
14
|
+
*/
|
|
15
|
+
export function addCss(css: string) {
|
|
16
|
+
addCss.que.add(css)
|
|
17
|
+
setTimeout(() => {
|
|
18
|
+
const css = [...addCss.que].join('\n')
|
|
19
|
+
if (css) {
|
|
20
|
+
addCss.que.clear()
|
|
21
|
+
const s = document.createElement('style')
|
|
22
|
+
s.id = `u${addCss.count++}`
|
|
23
|
+
s.innerHTML = css
|
|
24
|
+
document.head.appendChild(s)
|
|
25
|
+
}
|
|
26
|
+
}, 0)
|
|
27
|
+
}
|
|
28
|
+
addCss.que = new Set<string>()
|
|
29
|
+
addCss.count = 0
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Joins class names and omits falsey props
|
|
33
|
+
*
|
|
34
|
+
* @param classes - class names to be joined
|
|
35
|
+
* @returns a string of joined class names
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* ```typescript
|
|
39
|
+
* classJoin('a', 'b', 'c') // 'a b c'
|
|
40
|
+
* classJoin('a', 0, 'b', null, 'c') // 'a b c'
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
export function classJoin(...classes: (string | 0 | null | undefined)[]) {
|
|
9
44
|
return classes.filter(c => c && typeof c === 'string').join(' ')
|
|
10
45
|
}
|
|
11
46
|
|
|
47
|
+
/**
|
|
48
|
+
* Injects css and creates unique class names
|
|
49
|
+
*
|
|
50
|
+
* - Skips if already added
|
|
51
|
+
*
|
|
52
|
+
* @param cssString - string or template string, to be injected
|
|
53
|
+
* @returns a unique class name
|
|
54
|
+
*/
|
|
55
|
+
export function createClass(...p: T2SProps) {
|
|
56
|
+
let css = t2s(...p)
|
|
57
|
+
if (!css) return ''
|
|
58
|
+
let className = createClass.history.get(css)
|
|
59
|
+
if (!className) {
|
|
60
|
+
className = 's' + createClass.count++
|
|
61
|
+
createClass.history.set(css, className)
|
|
62
|
+
|
|
63
|
+
css = deleteComments(css)
|
|
64
|
+
css = expandShorthands(css)
|
|
65
|
+
css = expandArrayValues(css)
|
|
66
|
+
const qs = findQueries(css)
|
|
67
|
+
|
|
68
|
+
for (const q of qs.reverse()) {
|
|
69
|
+
css = css.slice(0, q.start) + css.slice(q.end)
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
css = `.${className}{\n${css}\n}\n`
|
|
73
|
+
css += qs
|
|
74
|
+
.map(q => {
|
|
75
|
+
if (q.query.startsWith('&')) {
|
|
76
|
+
return `.${className}${q.query.slice(1)}{\n${q.innerBody}\n}`
|
|
77
|
+
}
|
|
78
|
+
if (q.query.startsWith('@keyframes')) {
|
|
79
|
+
return q.outerBody
|
|
80
|
+
}
|
|
81
|
+
return `${q.query}{\n.${className}{${q.innerBody}\n}\n}`
|
|
82
|
+
})
|
|
83
|
+
.join('\n')
|
|
84
|
+
|
|
85
|
+
css = trimByLine(css) + '\n\n'
|
|
86
|
+
|
|
87
|
+
addCss(css)
|
|
88
|
+
}
|
|
89
|
+
return className
|
|
90
|
+
}
|
|
91
|
+
/** Breakpoints like chakra */
|
|
92
|
+
createClass.breakPoints = ['30em', '48em', '62em', '80em', '96em']
|
|
93
|
+
createClass.count = 0
|
|
94
|
+
createClass.history = new Map<string, string>()
|
|
95
|
+
|
|
12
96
|
/** delete css comments **/
|
|
13
97
|
function deleteComments(css: string) {
|
|
14
98
|
return css.replace(/{\/\*[\s\S]*?(?=\*\/})\*\/}/gm, '')
|
|
@@ -35,7 +119,7 @@ function expandArrayValues(css: string) {
|
|
|
35
119
|
if (i === 0) {
|
|
36
120
|
return `${prop}: ${val};`
|
|
37
121
|
}
|
|
38
|
-
return `@media (min-width: ${breakPoints[i - 1]}) { ${prop}: ${val}; }`
|
|
122
|
+
return `@media (min-width: ${createClass.breakPoints[i - 1]}) { ${prop}: ${val}; }`
|
|
39
123
|
})
|
|
40
124
|
.join('\n')
|
|
41
125
|
}
|
|
@@ -44,117 +128,6 @@ function expandArrayValues(css: string) {
|
|
|
44
128
|
.join('\n')
|
|
45
129
|
}
|
|
46
130
|
|
|
47
|
-
export interface ShorthandProps {
|
|
48
|
-
/** shorthand for css:align-items */
|
|
49
|
-
ai?: string
|
|
50
|
-
/** shorthand for css:border */
|
|
51
|
-
b?: string | number
|
|
52
|
-
/** shorthand for css:border-radius */
|
|
53
|
-
br?: string | number
|
|
54
|
-
/** shorthand for css:background */
|
|
55
|
-
bg?: string
|
|
56
|
-
/** shorthand for css:color */
|
|
57
|
-
c?: string
|
|
58
|
-
/** shorthand for css:display */
|
|
59
|
-
d?: string
|
|
60
|
-
/** shorthand for css:flex */
|
|
61
|
-
f?: string
|
|
62
|
-
/** shorthand for css:flex-direction */
|
|
63
|
-
fd?: string
|
|
64
|
-
/** shorthand for css:height */
|
|
65
|
-
h?: number | string
|
|
66
|
-
/** shorthand for css:inset */
|
|
67
|
-
i?: number | string
|
|
68
|
-
/** shorthand for css:justify-content */
|
|
69
|
-
jc?: string
|
|
70
|
-
/** shorthand for css:margin */
|
|
71
|
-
m?: number | string
|
|
72
|
-
/** shorthand for css:margin-left */
|
|
73
|
-
ml?: number | string
|
|
74
|
-
/** shorthand for css:margin-right */
|
|
75
|
-
mr?: number | string
|
|
76
|
-
/** shorthand for css:margin-top */
|
|
77
|
-
mt?: number | string
|
|
78
|
-
/** shorthand for css:margin-bottom */
|
|
79
|
-
mb?: number | string
|
|
80
|
-
/** shorthand for css:margin-top & margin-bottom */
|
|
81
|
-
my?: number | string
|
|
82
|
-
/** shorthand for css:margin-left & margin-right */
|
|
83
|
-
mx?: number | string
|
|
84
|
-
/** shorthand for css:max-width */
|
|
85
|
-
maxW?: number | string
|
|
86
|
-
/** shorthand for css:min-width */
|
|
87
|
-
minW?: number | string
|
|
88
|
-
/** shorthand for css:padding */
|
|
89
|
-
p?: number | string
|
|
90
|
-
/** shorthand for css:padding-left */
|
|
91
|
-
pl?: number | string
|
|
92
|
-
/** shorthand for css:padding-right */
|
|
93
|
-
pr?: number | string
|
|
94
|
-
/** shorthand for css:padding-top */
|
|
95
|
-
pt?: number | string
|
|
96
|
-
/** shorthand for css:padding-bottom */
|
|
97
|
-
pb?: number | string
|
|
98
|
-
/** shorthand for css:padding-top & padding-bottom */
|
|
99
|
-
py?: number | string
|
|
100
|
-
/** shorthand for css:padding-left & padding-right */
|
|
101
|
-
px?: number | string
|
|
102
|
-
/** shorthand for css:position */
|
|
103
|
-
pos?: number | string
|
|
104
|
-
/** shorthand for css:text-align */
|
|
105
|
-
ta?: string
|
|
106
|
-
/** shorthand for css:width */
|
|
107
|
-
w?: number | string
|
|
108
|
-
/** shorthand for css:z-index */
|
|
109
|
-
z?: number | string
|
|
110
|
-
}
|
|
111
|
-
export const shorthandPropsMap: Record<
|
|
112
|
-
keyof Omit<ShorthandProps, 'mx' | 'my' | 'px' | 'py'>,
|
|
113
|
-
string
|
|
114
|
-
> = {
|
|
115
|
-
ai: 'align-items',
|
|
116
|
-
b: 'border',
|
|
117
|
-
br: 'border-radius',
|
|
118
|
-
bg: 'background',
|
|
119
|
-
c: 'color',
|
|
120
|
-
d: 'display',
|
|
121
|
-
f: 'flex',
|
|
122
|
-
fd: 'flex-direction',
|
|
123
|
-
i: 'inset',
|
|
124
|
-
h: 'height',
|
|
125
|
-
jc: 'justify-content',
|
|
126
|
-
m: 'margin',
|
|
127
|
-
ml: 'margin-left',
|
|
128
|
-
mr: 'margin-right',
|
|
129
|
-
mt: 'margin-top',
|
|
130
|
-
mb: 'margin-bottom',
|
|
131
|
-
maxW: 'max-width',
|
|
132
|
-
minW: 'min-width',
|
|
133
|
-
p: 'padding',
|
|
134
|
-
pl: 'padding-left',
|
|
135
|
-
pr: 'padding-right',
|
|
136
|
-
pt: 'padding-top',
|
|
137
|
-
pb: 'padding-bottom',
|
|
138
|
-
pos: 'position',
|
|
139
|
-
ta: 'text-align',
|
|
140
|
-
w: 'width',
|
|
141
|
-
z: 'z-index',
|
|
142
|
-
}
|
|
143
|
-
export const shorthandProps = [...Object.keys(shorthandPropsMap), 'mx', 'my', 'px', 'py']
|
|
144
|
-
|
|
145
|
-
/** Expand short-hand css props to full */
|
|
146
|
-
function expandProps(css: string) {
|
|
147
|
-
css = '\n' + css // inject a newline to make the regex easier
|
|
148
|
-
// Handle 'mx', 'my', 'px', 'py'
|
|
149
|
-
css = css
|
|
150
|
-
.replace(/([mp])x:([^;]*)/g, '$1l:$2;\n$1r:$2')
|
|
151
|
-
.replace(/([mp])y:([^;]*);/g, '$1t:$2;\n$1b:$2')
|
|
152
|
-
Object.entries(shorthandPropsMap).forEach(([k, v]) => {
|
|
153
|
-
css = css.replace(new RegExp(`([ \n\t;])${k}:`, 'g'), `$1${v}:`)
|
|
154
|
-
})
|
|
155
|
-
return css.trim()
|
|
156
|
-
}
|
|
157
|
-
|
|
158
131
|
/** Find @keyframes, @media, @container queries in css **/
|
|
159
132
|
function findQueries(css: string) {
|
|
160
133
|
const queries = []
|
|
@@ -189,102 +162,10 @@ function findQueries(css: string) {
|
|
|
189
162
|
}
|
|
190
163
|
|
|
191
164
|
/** Trims whitespace for every line */
|
|
192
|
-
function
|
|
165
|
+
function trimByLine(css: string) {
|
|
193
166
|
return css
|
|
194
167
|
.split('\n')
|
|
195
168
|
.map(l => l.trim())
|
|
196
169
|
.filter(l => l)
|
|
197
170
|
.join('\n')
|
|
198
171
|
}
|
|
199
|
-
|
|
200
|
-
/**
|
|
201
|
-
* Assemble a string from a template string array and a list of placeholders.
|
|
202
|
-
*
|
|
203
|
-
* - If the first argument is a string, it is returned as is.
|
|
204
|
-
*
|
|
205
|
-
* i.e.
|
|
206
|
-
* myFoo(...props: TemplateStringProps) => {
|
|
207
|
-
* const inputStr = t2s(...props);
|
|
208
|
-
* }
|
|
209
|
-
* myFoo`hello ${name}` => 'hello world'
|
|
210
|
-
* myFoo(`hello ${name}`) => 'hello world'
|
|
211
|
-
*/
|
|
212
|
-
export function t2s(...tsp: TemplateStringProps) {
|
|
213
|
-
const [s, ...p] = tsp
|
|
214
|
-
return typeof s === 'string' ? s : s.map((s, i) => s + (p?.[i] ?? '')).join('')
|
|
215
|
-
}
|
|
216
|
-
export type TemplateStringProps = [
|
|
217
|
-
strings: TemplateStringsArray | string,
|
|
218
|
-
...placeHolders: string[]
|
|
219
|
-
]
|
|
220
|
-
|
|
221
|
-
/**
|
|
222
|
-
* Injects css to the page
|
|
223
|
-
*
|
|
224
|
-
* - Batches adds for performance
|
|
225
|
-
*
|
|
226
|
-
* @param css - css to be injected
|
|
227
|
-
* @returns void
|
|
228
|
-
*/
|
|
229
|
-
export function addCss(css: string) {
|
|
230
|
-
addCss.que.add(css)
|
|
231
|
-
setTimeout(() => {
|
|
232
|
-
const css = [...addCss.que].join('\n')
|
|
233
|
-
if (css) {
|
|
234
|
-
addCss.que.clear()
|
|
235
|
-
const s = document.createElement('style')
|
|
236
|
-
s.id = `u${addCss.count++}`
|
|
237
|
-
s.innerHTML = css
|
|
238
|
-
document.head.appendChild(s)
|
|
239
|
-
}
|
|
240
|
-
}, 0)
|
|
241
|
-
}
|
|
242
|
-
addCss.que = new Set<string>()
|
|
243
|
-
addCss.count = 0
|
|
244
|
-
|
|
245
|
-
/**
|
|
246
|
-
* Injects css and creates unique class names
|
|
247
|
-
*
|
|
248
|
-
* - Skips if already added
|
|
249
|
-
*
|
|
250
|
-
* @param css - string or template string, to be injected
|
|
251
|
-
* @returns a unique class name
|
|
252
|
-
*/
|
|
253
|
-
export function createClass(...p: TemplateStringProps) {
|
|
254
|
-
let css = t2s(...p)
|
|
255
|
-
if (!css) return ''
|
|
256
|
-
let className = createClass.history.get(css)
|
|
257
|
-
if (!className) {
|
|
258
|
-
className = 's' + createClass.count++
|
|
259
|
-
createClass.history.set(css, className)
|
|
260
|
-
|
|
261
|
-
css = deleteComments(css)
|
|
262
|
-
css = expandProps(css)
|
|
263
|
-
css = expandArrayValues(css)
|
|
264
|
-
const qs = findQueries(css)
|
|
265
|
-
|
|
266
|
-
for (const q of qs.reverse()) {
|
|
267
|
-
css = css.slice(0, q.start) + css.slice(q.end)
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
css = `.${className}{\n${css}\n}\n`
|
|
271
|
-
css += qs
|
|
272
|
-
.map(q => {
|
|
273
|
-
if (q.query.startsWith('&')) {
|
|
274
|
-
return `.${className}${q.query.slice(1)}{\n${q.innerBody}\n}`
|
|
275
|
-
}
|
|
276
|
-
if (q.query.startsWith('@keyframes')) {
|
|
277
|
-
return q.outerBody
|
|
278
|
-
}
|
|
279
|
-
return `${q.query}{\n.${className}{${q.innerBody}\n}\n}`
|
|
280
|
-
})
|
|
281
|
-
.join('\n')
|
|
282
|
-
|
|
283
|
-
css = trim(css) + '\n\n'
|
|
284
|
-
|
|
285
|
-
addCss(css)
|
|
286
|
-
}
|
|
287
|
-
return className
|
|
288
|
-
}
|
|
289
|
-
createClass.count = 0
|
|
290
|
-
createClass.history = new Map<string, string>()
|
package/esm/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,qBAAqB,CAAA;AACnC,OAAO,EAAC,WAAW,IAAI,GAAG,EAAC,MAAM,kBAAkB,CAAA"}
|
package/esm/index.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
/** Joins class names and filters out blanks */
|
|
5
|
-
export declare function classJoin(...classes: allowableAny[]): string;
|
|
1
|
+
/**
|
|
2
|
+
* All the shorthand props that can be used in the css prop
|
|
3
|
+
*/
|
|
6
4
|
export interface ShorthandProps {
|
|
7
5
|
/** shorthand for css:align-items */
|
|
8
6
|
ai?: string;
|
|
@@ -67,49 +65,11 @@ export interface ShorthandProps {
|
|
|
67
65
|
/** shorthand for css:z-index */
|
|
68
66
|
z?: number | string;
|
|
69
67
|
}
|
|
70
|
-
export declare const shorthandPropsMap: Record<keyof Omit<ShorthandProps, 'mx' | 'my' | 'px' | 'py'>, string>;
|
|
71
|
-
export declare const shorthandProps: string[];
|
|
72
|
-
/**
|
|
73
|
-
* Assemble a string from a template string array and a list of placeholders.
|
|
74
|
-
*
|
|
75
|
-
* - If the first argument is a string, it is returned as is.
|
|
76
|
-
*
|
|
77
|
-
* i.e.
|
|
78
|
-
* myFoo(...props: TemplateStringProps) => {
|
|
79
|
-
* const inputStr = t2s(...props);
|
|
80
|
-
* }
|
|
81
|
-
* myFoo`hello ${name}` => 'hello world'
|
|
82
|
-
* myFoo(`hello ${name}`) => 'hello world'
|
|
83
|
-
*/
|
|
84
|
-
export declare function t2s(...tsp: TemplateStringProps): string;
|
|
85
|
-
export type TemplateStringProps = [
|
|
86
|
-
strings: TemplateStringsArray | string,
|
|
87
|
-
...placeHolders: string[]
|
|
88
|
-
];
|
|
89
68
|
/**
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
* - Batches adds for performance
|
|
93
|
-
*
|
|
94
|
-
* @param css - css to be injected
|
|
95
|
-
* @returns void
|
|
69
|
+
* Expand short-hand css props to full
|
|
96
70
|
*/
|
|
97
|
-
export declare function
|
|
98
|
-
export declare namespace addCss {
|
|
99
|
-
var que: Set<string>;
|
|
100
|
-
var count: number;
|
|
101
|
-
}
|
|
71
|
+
export declare function expandShorthands(css: string): string;
|
|
102
72
|
/**
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
* - Skips if already added
|
|
106
|
-
*
|
|
107
|
-
* @param css - string or template string, to be injected
|
|
108
|
-
* @returns a unique class name
|
|
73
|
+
* Map shorthand props to their full css prop
|
|
109
74
|
*/
|
|
110
|
-
export declare
|
|
111
|
-
export declare namespace createClass {
|
|
112
|
-
var count: number;
|
|
113
|
-
var history: Map<string, string>;
|
|
114
|
-
}
|
|
115
|
-
export {};
|
|
75
|
+
export declare const shorthandPropsMap: Record<keyof Omit<ShorthandProps, 'mx' | 'my' | 'px' | 'py'>, string>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Expand short-hand css props to full
|
|
3
|
+
*/
|
|
4
|
+
export function expandShorthands(css) {
|
|
5
|
+
css = '\n' + css; // inject a newline to make the regex easier
|
|
6
|
+
// Handle 'mx', 'my', 'px', 'py'
|
|
7
|
+
css = css
|
|
8
|
+
.replace(/([mp])x:([^;]*)/g, '$1l:$2;\n$1r:$2')
|
|
9
|
+
.replace(/([mp])y:([^;]*);/g, '$1t:$2;\n$1b:$2');
|
|
10
|
+
Object.entries(shorthandPropsMap).forEach(([k, v]) => {
|
|
11
|
+
css = css.replace(new RegExp(`([ \n\t;])${k}:`, 'g'), `$1${v}:`);
|
|
12
|
+
});
|
|
13
|
+
return css.trim();
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Map shorthand props to their full css prop
|
|
17
|
+
*/
|
|
18
|
+
export const shorthandPropsMap = {
|
|
19
|
+
ai: 'align-items',
|
|
20
|
+
b: 'border',
|
|
21
|
+
br: 'border-radius',
|
|
22
|
+
bg: 'background',
|
|
23
|
+
c: 'color',
|
|
24
|
+
d: 'display',
|
|
25
|
+
f: 'flex',
|
|
26
|
+
fd: 'flex-direction',
|
|
27
|
+
i: 'inset',
|
|
28
|
+
h: 'height',
|
|
29
|
+
jc: 'justify-content',
|
|
30
|
+
m: 'margin',
|
|
31
|
+
ml: 'margin-left',
|
|
32
|
+
mr: 'margin-right',
|
|
33
|
+
mt: 'margin-top',
|
|
34
|
+
mb: 'margin-bottom',
|
|
35
|
+
maxW: 'max-width',
|
|
36
|
+
minW: 'min-width',
|
|
37
|
+
p: 'padding',
|
|
38
|
+
pl: 'padding-left',
|
|
39
|
+
pr: 'padding-right',
|
|
40
|
+
pt: 'padding-top',
|
|
41
|
+
pb: 'padding-bottom',
|
|
42
|
+
pos: 'position',
|
|
43
|
+
ta: 'text-align',
|
|
44
|
+
w: 'width',
|
|
45
|
+
z: 'z-index',
|
|
46
|
+
};
|
|
47
|
+
//# sourceMappingURL=shorthandProps.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shorthandProps.js","sourceRoot":"","sources":["../src/shorthandProps.ts"],"names":[],"mappings":"AAoEA;;GAEG;AACH,MAAM,UAAU,gBAAgB,CAAC,GAAW;IAC1C,GAAG,GAAG,IAAI,GAAG,GAAG,CAAA,CAAC,4CAA4C;IAC7D,gCAAgC;IAChC,GAAG,GAAG,GAAG;SACN,OAAO,CAAC,kBAAkB,EAAE,iBAAiB,CAAC;SAC9C,OAAO,CAAC,mBAAmB,EAAE,iBAAiB,CAAC,CAAA;IAClD,MAAM,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE;QACnD,GAAG,GAAG,GAAG,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,aAAa,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAA;IAClE,CAAC,CAAC,CAAA;IACF,OAAO,GAAG,CAAC,IAAI,EAAE,CAAA;AACnB,CAAC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAG1B;IACF,EAAE,EAAE,aAAa;IACjB,CAAC,EAAE,QAAQ;IACX,EAAE,EAAE,eAAe;IACnB,EAAE,EAAE,YAAY;IAChB,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,SAAS;IACZ,CAAC,EAAE,MAAM;IACT,EAAE,EAAE,gBAAgB;IACpB,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,QAAQ;IACX,EAAE,EAAE,iBAAiB;IACrB,CAAC,EAAE,QAAQ;IACX,EAAE,EAAE,aAAa;IACjB,EAAE,EAAE,cAAc;IAClB,EAAE,EAAE,YAAY;IAChB,EAAE,EAAE,eAAe;IACnB,IAAI,EAAE,WAAW;IACjB,IAAI,EAAE,WAAW;IACjB,CAAC,EAAE,SAAS;IACZ,EAAE,EAAE,cAAc;IAClB,EAAE,EAAE,eAAe;IACnB,EAAE,EAAE,aAAa;IACjB,EAAE,EAAE,gBAAgB;IACpB,GAAG,EAAE,UAAU;IACf,EAAE,EAAE,YAAY;IAChB,CAAC,EAAE,OAAO;IACV,CAAC,EAAE,SAAS;CACb,CAAA"}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* All the shorthand props that can be used in the css prop
|
|
3
|
+
*/
|
|
4
|
+
export interface ShorthandProps {
|
|
5
|
+
/** shorthand for css:align-items */
|
|
6
|
+
ai?: string
|
|
7
|
+
/** shorthand for css:border */
|
|
8
|
+
b?: string | number
|
|
9
|
+
/** shorthand for css:border-radius */
|
|
10
|
+
br?: string | number
|
|
11
|
+
/** shorthand for css:background */
|
|
12
|
+
bg?: string
|
|
13
|
+
/** shorthand for css:color */
|
|
14
|
+
c?: string
|
|
15
|
+
/** shorthand for css:display */
|
|
16
|
+
d?: string
|
|
17
|
+
/** shorthand for css:flex */
|
|
18
|
+
f?: string
|
|
19
|
+
/** shorthand for css:flex-direction */
|
|
20
|
+
fd?: string
|
|
21
|
+
/** shorthand for css:height */
|
|
22
|
+
h?: number | string
|
|
23
|
+
/** shorthand for css:inset */
|
|
24
|
+
i?: number | string
|
|
25
|
+
/** shorthand for css:justify-content */
|
|
26
|
+
jc?: string
|
|
27
|
+
/** shorthand for css:margin */
|
|
28
|
+
m?: number | string
|
|
29
|
+
/** shorthand for css:margin-left */
|
|
30
|
+
ml?: number | string
|
|
31
|
+
/** shorthand for css:margin-right */
|
|
32
|
+
mr?: number | string
|
|
33
|
+
/** shorthand for css:margin-top */
|
|
34
|
+
mt?: number | string
|
|
35
|
+
/** shorthand for css:margin-bottom */
|
|
36
|
+
mb?: number | string
|
|
37
|
+
/** shorthand for css:margin-top & margin-bottom */
|
|
38
|
+
my?: number | string
|
|
39
|
+
/** shorthand for css:margin-left & margin-right */
|
|
40
|
+
mx?: number | string
|
|
41
|
+
/** shorthand for css:max-width */
|
|
42
|
+
maxW?: number | string
|
|
43
|
+
/** shorthand for css:min-width */
|
|
44
|
+
minW?: number | string
|
|
45
|
+
/** shorthand for css:padding */
|
|
46
|
+
p?: number | string
|
|
47
|
+
/** shorthand for css:padding-left */
|
|
48
|
+
pl?: number | string
|
|
49
|
+
/** shorthand for css:padding-right */
|
|
50
|
+
pr?: number | string
|
|
51
|
+
/** shorthand for css:padding-top */
|
|
52
|
+
pt?: number | string
|
|
53
|
+
/** shorthand for css:padding-bottom */
|
|
54
|
+
pb?: number | string
|
|
55
|
+
/** shorthand for css:padding-top & padding-bottom */
|
|
56
|
+
py?: number | string
|
|
57
|
+
/** shorthand for css:padding-left & padding-right */
|
|
58
|
+
px?: number | string
|
|
59
|
+
/** shorthand for css:position */
|
|
60
|
+
pos?: number | string
|
|
61
|
+
/** shorthand for css:text-align */
|
|
62
|
+
ta?: string
|
|
63
|
+
/** shorthand for css:width */
|
|
64
|
+
w?: number | string
|
|
65
|
+
/** shorthand for css:z-index */
|
|
66
|
+
z?: number | string
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Expand short-hand css props to full
|
|
71
|
+
*/
|
|
72
|
+
export function expandShorthands(css: string) {
|
|
73
|
+
css = '\n' + css // inject a newline to make the regex easier
|
|
74
|
+
// Handle 'mx', 'my', 'px', 'py'
|
|
75
|
+
css = css
|
|
76
|
+
.replace(/([mp])x:([^;]*)/g, '$1l:$2;\n$1r:$2')
|
|
77
|
+
.replace(/([mp])y:([^;]*);/g, '$1t:$2;\n$1b:$2')
|
|
78
|
+
Object.entries(shorthandPropsMap).forEach(([k, v]) => {
|
|
79
|
+
css = css.replace(new RegExp(`([ \n\t;])${k}:`, 'g'), `$1${v}:`)
|
|
80
|
+
})
|
|
81
|
+
return css.trim()
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Map shorthand props to their full css prop
|
|
86
|
+
*/
|
|
87
|
+
export const shorthandPropsMap: Record<
|
|
88
|
+
keyof Omit<ShorthandProps, 'mx' | 'my' | 'px' | 'py'>,
|
|
89
|
+
string
|
|
90
|
+
> = {
|
|
91
|
+
ai: 'align-items',
|
|
92
|
+
b: 'border',
|
|
93
|
+
br: 'border-radius',
|
|
94
|
+
bg: 'background',
|
|
95
|
+
c: 'color',
|
|
96
|
+
d: 'display',
|
|
97
|
+
f: 'flex',
|
|
98
|
+
fd: 'flex-direction',
|
|
99
|
+
i: 'inset',
|
|
100
|
+
h: 'height',
|
|
101
|
+
jc: 'justify-content',
|
|
102
|
+
m: 'margin',
|
|
103
|
+
ml: 'margin-left',
|
|
104
|
+
mr: 'margin-right',
|
|
105
|
+
mt: 'margin-top',
|
|
106
|
+
mb: 'margin-bottom',
|
|
107
|
+
maxW: 'max-width',
|
|
108
|
+
minW: 'min-width',
|
|
109
|
+
p: 'padding',
|
|
110
|
+
pl: 'padding-left',
|
|
111
|
+
pr: 'padding-right',
|
|
112
|
+
pt: 'padding-top',
|
|
113
|
+
pb: 'padding-bottom',
|
|
114
|
+
pos: 'position',
|
|
115
|
+
ta: 'text-align',
|
|
116
|
+
w: 'width',
|
|
117
|
+
z: 'z-index',
|
|
118
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slimr/css",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.12",
|
|
4
4
|
"author": "Brian Dombrowski",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"private": false,
|
|
@@ -32,5 +32,8 @@
|
|
|
32
32
|
"build:cjs": "OUT=cjs; tsc -d -m commonjs --outDir $OUT --noEmit false && cp -r src/* $OUT",
|
|
33
33
|
"clean": "rm -rf esm cjs",
|
|
34
34
|
"prepack": "run-s build"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@slimr/util": "2.2.8"
|
|
35
38
|
}
|
|
36
39
|
}
|