@slimr/styled 2.1.15 → 2.1.18
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 +84 -83
- package/cjs/core.d.ts +6 -3
- package/cjs/core.js +59 -49
- package/cjs/core.js.map +1 -1
- package/cjs/core.ts +58 -43
- package/cjs/primitives.d.ts +92 -0
- package/cjs/primitives.js +92 -0
- package/cjs/primitives.js.map +1 -1
- package/cjs/primitives.ts +92 -0
- package/cjs/styled.d.ts +113 -91
- package/cjs/styled.js +113 -91
- package/cjs/styled.js.map +1 -1
- package/cjs/styled.ts +113 -91
- package/esm/core.d.ts +6 -3
- package/esm/core.js +59 -49
- package/esm/core.js.map +1 -1
- package/esm/core.ts +58 -43
- package/esm/primitives.d.ts +92 -0
- package/esm/primitives.js +92 -0
- package/esm/primitives.js.map +1 -1
- package/esm/primitives.ts +92 -0
- package/esm/styled.d.ts +113 -91
- package/esm/styled.js +113 -91
- package/esm/styled.js.map +1 -1
- package/esm/styled.ts +113 -91
- package/package.json +3 -3
- package/src/core.ts +58 -43
- package/src/primitives.ts +92 -0
- package/src/styled.ts +113 -91
package/cjs/styled.js
CHANGED
|
@@ -2,188 +2,210 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.styled = void 0;
|
|
4
4
|
const core_js_1 = require("./core.js");
|
|
5
|
+
/**
|
|
6
|
+
* Create React components with styles using familiar syntax. See
|
|
7
|
+
* [npm](https://www.npmjs.com/package/@slimr/styled) for more info.
|
|
8
|
+
*
|
|
9
|
+
* @param component
|
|
10
|
+
* a functional component to be styled; must accept a className prop
|
|
11
|
+
*
|
|
12
|
+
* @returns
|
|
13
|
+
* a function that accepts a template string of css returns a decorated React component
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* const Button = styled('button')`
|
|
17
|
+
* c: red; // color shorthand
|
|
18
|
+
* w: [100%, null, 300px]; // responsive width = 100% on mobile, 300px on desktop
|
|
19
|
+
* `
|
|
20
|
+
* const Button2 = styled.button`
|
|
21
|
+
* c: blue;
|
|
22
|
+
* `
|
|
23
|
+
* const Button3 = styled(Button)`
|
|
24
|
+
* bg: red;
|
|
25
|
+
* `
|
|
26
|
+
*/
|
|
5
27
|
exports.styled = Object.assign(core_js_1.styledBase, {
|
|
6
|
-
/** creates a 'a' component with css applied */
|
|
28
|
+
/** creates a 'a' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
7
29
|
a: (...p) => (0, core_js_1.styledBase)('a')(...p),
|
|
8
|
-
/** creates a 'abbr' component with css applied */
|
|
30
|
+
/** creates a 'abbr' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
9
31
|
abbr: (...p) => (0, core_js_1.styledBase)('abbr')(...p),
|
|
10
|
-
/** creates a 'address' component with css applied */
|
|
32
|
+
/** creates a 'address' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
11
33
|
address: (...p) => (0, core_js_1.styledBase)('address')(...p),
|
|
12
|
-
/** creates a 'area' component with css applied */
|
|
34
|
+
/** creates a 'area' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
13
35
|
area: (...p) => (0, core_js_1.styledBase)('area')(...p),
|
|
14
|
-
/** creates a 'article' component with css applied */
|
|
36
|
+
/** creates a 'article' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
15
37
|
article: (...p) => (0, core_js_1.styledBase)('article')(...p),
|
|
16
|
-
/** creates a 'aside' component with css applied */
|
|
38
|
+
/** creates a 'aside' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
17
39
|
aside: (...p) => (0, core_js_1.styledBase)('aside')(...p),
|
|
18
|
-
/** creates a 'audio' component with css applied */
|
|
40
|
+
/** creates a 'audio' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
19
41
|
audio: (...p) => (0, core_js_1.styledBase)('audio')(...p),
|
|
20
|
-
/** creates a 'b' component with css applied */
|
|
42
|
+
/** creates a 'b' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
21
43
|
b: (...p) => (0, core_js_1.styledBase)('b')(...p),
|
|
22
|
-
/** creates a 'big' component with css applied; Deprecated so left out */
|
|
44
|
+
/** creates a 'big' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info.; Deprecated so left out */
|
|
23
45
|
// big: (...p: TSP) => styled('big' as unk as FC<HTP['big']>)(...p),
|
|
24
|
-
/** creates a 'blockquote' component with css applied */
|
|
46
|
+
/** creates a 'blockquote' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
25
47
|
blockquote: (...p) => (0, core_js_1.styledBase)('blockquote')(...p),
|
|
26
|
-
/** creates a 'body' component with css applied; omitted bc doesnt seem useful */
|
|
48
|
+
/** creates a 'body' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info.; omitted bc doesnt seem useful */
|
|
27
49
|
// body: (...p: TSP) => styled('body' as unk as FC<HTP['body']>)(...p),
|
|
28
|
-
/** creates a 'br' component with css applied; omitted bc doesnt seem useful */
|
|
50
|
+
/** creates a 'br' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info.; omitted bc doesnt seem useful */
|
|
29
51
|
br: (...p) => (0, core_js_1.styledBase)('br')(...p),
|
|
30
|
-
/** creates a 'button' component with css applied */
|
|
52
|
+
/** creates a 'button' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
31
53
|
button: (...p) => (0, core_js_1.styledBase)('button')(...p),
|
|
32
|
-
/** creates a 'caption' component with css applied */
|
|
54
|
+
/** creates a 'caption' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
33
55
|
caption: (...p) => (0, core_js_1.styledBase)('caption')(...p),
|
|
34
|
-
/** creates a 'cite' component with css applied */
|
|
56
|
+
/** creates a 'cite' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
35
57
|
cite: (...p) => (0, core_js_1.styledBase)('cite')(...p),
|
|
36
|
-
/** creates a 'code' component with css applied */
|
|
58
|
+
/** creates a 'code' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
37
59
|
code: (...p) => (0, core_js_1.styledBase)('code')(...p),
|
|
38
|
-
/** creates a 'col' component with css applied */
|
|
60
|
+
/** creates a 'col' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
39
61
|
col: (...p) => (0, core_js_1.styledBase)('col')(...p),
|
|
40
|
-
/** creates a 'colgroup' component with css applied */
|
|
62
|
+
/** creates a 'colgroup' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
41
63
|
colgroup: (...p) => (0, core_js_1.styledBase)('colgroup')(...p),
|
|
42
|
-
/** creates a 'dd' component with css applied */
|
|
64
|
+
/** creates a 'dd' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
43
65
|
dd: (...p) => (0, core_js_1.styledBase)('dd')(...p),
|
|
44
|
-
/** creates a 'del' component with css applied */
|
|
66
|
+
/** creates a 'del' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
45
67
|
del: (...p) => (0, core_js_1.styledBase)('del')(...p),
|
|
46
|
-
/** creates a 'details' component with css applied */
|
|
68
|
+
/** creates a 'details' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
47
69
|
details: (...p) => (0, core_js_1.styledBase)('details')(...p),
|
|
48
|
-
/** creates a 'dfn' component with css applied */
|
|
70
|
+
/** creates a 'dfn' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
49
71
|
dfn: (...p) => (0, core_js_1.styledBase)('dfn')(...p),
|
|
50
|
-
/** creates a 'dialog' component with css applied */
|
|
72
|
+
/** creates a 'dialog' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
51
73
|
dialog: (...p) => (0, core_js_1.styledBase)('dialog')(...p),
|
|
52
|
-
/** creates a 'div' component with css applied */
|
|
74
|
+
/** creates a 'div' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
53
75
|
div: (...p) => (0, core_js_1.styledBase)('div')(...p),
|
|
54
|
-
/** creates a 'dl' component with css applied */
|
|
76
|
+
/** creates a 'dl' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
55
77
|
dl: (...p) => (0, core_js_1.styledBase)('dl')(...p),
|
|
56
|
-
/** creates a 'dt' component with css applied */
|
|
78
|
+
/** creates a 'dt' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
57
79
|
dt: (...p) => (0, core_js_1.styledBase)('dt')(...p),
|
|
58
|
-
/** creates a 'em' component with css applied */
|
|
80
|
+
/** creates a 'em' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
59
81
|
em: (...p) => (0, core_js_1.styledBase)('em')(...p),
|
|
60
|
-
/** creates a 'embed' component with css applied */
|
|
82
|
+
/** creates a 'embed' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
61
83
|
embed: (...p) => (0, core_js_1.styledBase)('embed')(...p),
|
|
62
|
-
/** creates a 'fieldset' component with css applied */
|
|
84
|
+
/** creates a 'fieldset' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
63
85
|
fieldset: (...p) => (0, core_js_1.styledBase)('fieldset')(...p),
|
|
64
|
-
/** creates a 'figcaption' component with css applied */
|
|
86
|
+
/** creates a 'figcaption' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
65
87
|
figcaption: (...p) => (0, core_js_1.styledBase)('figcaption')(...p),
|
|
66
|
-
/** creates a 'figure' component with css applied */
|
|
88
|
+
/** creates a 'figure' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
67
89
|
figure: (...p) => (0, core_js_1.styledBase)('figure')(...p),
|
|
68
|
-
/** creates a 'footer' component with css applied */
|
|
90
|
+
/** creates a 'footer' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
69
91
|
footer: (...p) => (0, core_js_1.styledBase)('footer')(...p),
|
|
70
|
-
/** creates a 'form' component with css applied */
|
|
92
|
+
/** creates a 'form' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
71
93
|
form: (...p) => (0, core_js_1.styledBase)('form')(...p),
|
|
72
|
-
/** creates a 'h1' component with css applied */
|
|
94
|
+
/** creates a 'h1' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
73
95
|
h1: (...p) => (0, core_js_1.styledBase)('h1')(...p),
|
|
74
|
-
/** creates a 'h2' component with css applied */
|
|
96
|
+
/** creates a 'h2' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
75
97
|
h2: (...p) => (0, core_js_1.styledBase)('h2')(...p),
|
|
76
|
-
/** creates a 'h3' component with css applied */
|
|
98
|
+
/** creates a 'h3' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
77
99
|
h3: (...p) => (0, core_js_1.styledBase)('h3')(...p),
|
|
78
|
-
/** creates a 'h4' component with css applied */
|
|
100
|
+
/** creates a 'h4' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
79
101
|
h4: (...p) => (0, core_js_1.styledBase)('h4')(...p),
|
|
80
|
-
/** creates a 'h5' component with css applied */
|
|
102
|
+
/** creates a 'h5' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
81
103
|
h5: (...p) => (0, core_js_1.styledBase)('h5')(...p),
|
|
82
|
-
/** creates a 'h6' component with css applied */
|
|
104
|
+
/** creates a 'h6' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
83
105
|
h6: (...p) => (0, core_js_1.styledBase)('h6')(...p),
|
|
84
|
-
/** creates a 'header' component with css applied */
|
|
106
|
+
/** creates a 'header' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
85
107
|
header: (...p) => (0, core_js_1.styledBase)('header')(...p),
|
|
86
|
-
/** creates a 'hgroup' component with css applied */
|
|
108
|
+
/** creates a 'hgroup' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
87
109
|
hgroup: (...p) => (0, core_js_1.styledBase)('hgroup')(...p),
|
|
88
|
-
/** creates a 'hr' component with css applied */
|
|
110
|
+
/** creates a 'hr' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
89
111
|
hr: (...p) => (0, core_js_1.styledBase)('hr')(...p),
|
|
90
|
-
/** creates a 'i' component with css applied */
|
|
112
|
+
/** creates a 'i' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
91
113
|
i: (...p) => (0, core_js_1.styledBase)('i')(...p),
|
|
92
|
-
/** creates a 'iframe' component with css applied */
|
|
114
|
+
/** creates a 'iframe' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
93
115
|
iframe: (...p) => (0, core_js_1.styledBase)('iframe')(...p),
|
|
94
|
-
/** creates a 'img' component with css applied */
|
|
116
|
+
/** creates a 'img' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
95
117
|
img: (...p) => (0, core_js_1.styledBase)('img')(...p),
|
|
96
|
-
/** creates a 'input' component with css applied */
|
|
118
|
+
/** creates a 'input' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
97
119
|
input: (...p) => (0, core_js_1.styledBase)('input')(...p),
|
|
98
|
-
/** creates a 'ins' component with css applied */
|
|
120
|
+
/** creates a 'ins' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
99
121
|
ins: (...p) => (0, core_js_1.styledBase)('ins')(...p),
|
|
100
|
-
/** creates a 'kbd' component with css applied */
|
|
122
|
+
/** creates a 'kbd' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
101
123
|
kbd: (...p) => (0, core_js_1.styledBase)('kbd')(...p),
|
|
102
|
-
/** creates a 'label' component with css applied */
|
|
124
|
+
/** creates a 'label' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
103
125
|
label: (...p) => (0, core_js_1.styledBase)('label')(...p),
|
|
104
|
-
/** creates a 'legend' component with css applied */
|
|
126
|
+
/** creates a 'legend' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
105
127
|
legend: (...p) => (0, core_js_1.styledBase)('legend')(...p),
|
|
106
|
-
/** creates a 'li' component with css applied */
|
|
128
|
+
/** creates a 'li' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
107
129
|
li: (...p) => (0, core_js_1.styledBase)('li')(...p),
|
|
108
|
-
/** creates a 'main' component with css applied */
|
|
130
|
+
/** creates a 'main' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
109
131
|
main: (...p) => (0, core_js_1.styledBase)('main')(...p),
|
|
110
|
-
/** creates a 'map' component with css applied */
|
|
132
|
+
/** creates a 'map' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
111
133
|
map: (...p) => (0, core_js_1.styledBase)('map')(...p),
|
|
112
|
-
/** creates a 'mark' component with css applied */
|
|
134
|
+
/** creates a 'mark' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
113
135
|
mark: (...p) => (0, core_js_1.styledBase)('mark')(...p),
|
|
114
|
-
/** creates a 'meter' component with css applied */
|
|
136
|
+
/** creates a 'meter' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
115
137
|
meter: (...p) => (0, core_js_1.styledBase)('meter')(...p),
|
|
116
|
-
/** creates a 'nav' component with css applied */
|
|
138
|
+
/** creates a 'nav' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
117
139
|
nav: (...p) => (0, core_js_1.styledBase)('nav')(...p),
|
|
118
|
-
/** creates a 'object' component with css applied */
|
|
140
|
+
/** creates a 'object' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
119
141
|
object: (...p) => (0, core_js_1.styledBase)('object')(...p),
|
|
120
|
-
/** creates a 'ol' component with css applied */
|
|
142
|
+
/** creates a 'ol' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
121
143
|
ol: (...p) => (0, core_js_1.styledBase)('ol')(...p),
|
|
122
|
-
/** creates a 'optgroup' component with css applied */
|
|
144
|
+
/** creates a 'optgroup' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
123
145
|
optgroup: (...p) => (0, core_js_1.styledBase)('optgroup')(...p),
|
|
124
|
-
/** creates a 'option' component with css applied */
|
|
146
|
+
/** creates a 'option' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
125
147
|
option: (...p) => (0, core_js_1.styledBase)('option')(...p),
|
|
126
|
-
/** creates a 'output' component with css applied */
|
|
148
|
+
/** creates a 'output' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
127
149
|
output: (...p) => (0, core_js_1.styledBase)('output')(...p),
|
|
128
|
-
/** creates a 'p' component with css applied */
|
|
150
|
+
/** creates a 'p' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
129
151
|
p: (...p) => (0, core_js_1.styledBase)('p')(...p),
|
|
130
|
-
/** creates a 'picture' component with css applied */
|
|
152
|
+
/** creates a 'picture' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
131
153
|
picture: (...p) => (0, core_js_1.styledBase)('picture')(...p),
|
|
132
|
-
/** creates a 'pre' component with css applied */
|
|
154
|
+
/** creates a 'pre' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
133
155
|
pre: (...p) => (0, core_js_1.styledBase)('pre')(...p),
|
|
134
|
-
/** creates a 'progress' component with css applied */
|
|
156
|
+
/** creates a 'progress' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
135
157
|
progress: (...p) => (0, core_js_1.styledBase)('progress')(...p),
|
|
136
|
-
/** creates a 'q' component with css applied */
|
|
158
|
+
/** creates a 'q' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
137
159
|
q: (...p) => (0, core_js_1.styledBase)('q')(...p),
|
|
138
|
-
/** creates a 'rp' component with css applied */
|
|
160
|
+
/** creates a 'rp' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
139
161
|
rp: (...p) => (0, core_js_1.styledBase)('rp')(...p),
|
|
140
|
-
/** creates a 'rt' component with css applied */
|
|
162
|
+
/** creates a 'rt' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
141
163
|
rt: (...p) => (0, core_js_1.styledBase)('rt')(...p),
|
|
142
|
-
/** creates a 'ruby' component with css applied */
|
|
164
|
+
/** creates a 'ruby' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
143
165
|
ruby: (...p) => (0, core_js_1.styledBase)('ruby')(...p),
|
|
144
|
-
/** creates a 's' component with css applied */
|
|
166
|
+
/** creates a 's' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
145
167
|
s: (...p) => (0, core_js_1.styledBase)('s')(...p),
|
|
146
|
-
/** creates a 'samp' component with css applied */
|
|
168
|
+
/** creates a 'samp' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
147
169
|
samp: (...p) => (0, core_js_1.styledBase)('samp')(...p),
|
|
148
|
-
/** creates a 'section' component with css applied */
|
|
170
|
+
/** creates a 'section' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
149
171
|
section: (...p) => (0, core_js_1.styledBase)('section')(...p),
|
|
150
|
-
/** creates a 'select' component with css applied */
|
|
172
|
+
/** creates a 'select' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
151
173
|
select: (...p) => (0, core_js_1.styledBase)('select')(...p),
|
|
152
|
-
/** creates a 'small' component with css applied */
|
|
174
|
+
/** creates a 'small' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
153
175
|
small: (...p) => (0, core_js_1.styledBase)('small')(...p),
|
|
154
|
-
/** creates a 'span' component with css applied */
|
|
176
|
+
/** creates a 'span' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
155
177
|
span: (...p) => (0, core_js_1.styledBase)('span')(...p),
|
|
156
|
-
/** creates a 'strong' component with css applied */
|
|
178
|
+
/** creates a 'strong' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
157
179
|
strong: (...p) => (0, core_js_1.styledBase)('strong')(...p),
|
|
158
|
-
/** creates a 'sub' component with css applied */
|
|
180
|
+
/** creates a 'sub' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
159
181
|
sub: (...p) => (0, core_js_1.styledBase)('sub')(...p),
|
|
160
|
-
/** creates a 'summary' component with css applied */
|
|
182
|
+
/** creates a 'summary' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
161
183
|
summary: (...p) => (0, core_js_1.styledBase)('summary')(...p),
|
|
162
|
-
/** creates a 'sup' component with css applied */
|
|
184
|
+
/** creates a 'sup' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
163
185
|
sup: (...p) => (0, core_js_1.styledBase)('sup')(...p),
|
|
164
|
-
/** creates a 'table' component with css applied */
|
|
186
|
+
/** creates a 'table' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
165
187
|
table: (...p) => (0, core_js_1.styledBase)('table')(...p),
|
|
166
|
-
/** creates a 'tbody' component with css applied */
|
|
188
|
+
/** creates a 'tbody' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
167
189
|
tbody: (...p) => (0, core_js_1.styledBase)('tbody')(...p),
|
|
168
|
-
/** creates a 'td' component with css applied */
|
|
190
|
+
/** creates a 'td' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
169
191
|
td: (...p) => (0, core_js_1.styledBase)('td')(...p),
|
|
170
|
-
/** creates a 'textarea' component with css applied */
|
|
192
|
+
/** creates a 'textarea' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
171
193
|
textarea: (...p) => (0, core_js_1.styledBase)('textarea')(...p),
|
|
172
|
-
/** creates a 'tfoot' component with css applied */
|
|
194
|
+
/** creates a 'tfoot' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
173
195
|
tfoot: (...p) => (0, core_js_1.styledBase)('tfoot')(...p),
|
|
174
|
-
/** creates a 'th' component with css applied */
|
|
196
|
+
/** creates a 'th' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
175
197
|
th: (...p) => (0, core_js_1.styledBase)('th')(...p),
|
|
176
|
-
/** creates a 'thead' component with css applied */
|
|
198
|
+
/** creates a 'thead' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
177
199
|
thead: (...p) => (0, core_js_1.styledBase)('thead')(...p),
|
|
178
|
-
/** creates a 'time' component with css applied */
|
|
200
|
+
/** creates a 'time' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
179
201
|
time: (...p) => (0, core_js_1.styledBase)('time')(...p),
|
|
180
|
-
/** creates a 'tr' component with css applied */
|
|
202
|
+
/** creates a 'tr' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
181
203
|
tr: (...p) => (0, core_js_1.styledBase)('tr')(...p),
|
|
182
|
-
/** creates a 'u' component with css applied */
|
|
204
|
+
/** creates a 'u' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
183
205
|
u: (...p) => (0, core_js_1.styledBase)('u')(...p),
|
|
184
|
-
/** creates a 'ul' component with css applied */
|
|
206
|
+
/** creates a 'ul' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
185
207
|
ul: (...p) => (0, core_js_1.styledBase)('ul')(...p),
|
|
186
|
-
/** creates a 'video' component with css applied */
|
|
208
|
+
/** creates a 'video' component with css applied; See [npm](https://www.npmjs.com/package/@slimr/styled) for more info. */
|
|
187
209
|
video: (...p) => (0, core_js_1.styledBase)('video')(...p),
|
|
188
210
|
});
|
|
189
211
|
//# sourceMappingURL=styled.js.map
|
package/cjs/styled.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styled.js","sourceRoot":"","sources":["../src/styled.ts"],"names":[],"mappings":";;;AAGA,uCAAyC;
|
|
1
|
+
{"version":3,"file":"styled.js","sourceRoot":"","sources":["../src/styled.ts"],"names":[],"mappings":"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"}
|