@slimr/styled 2.0.5 → 2.0.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @slimr/styled [![npm package](https://img.shields.io/npm/v/@slimr/styled.svg?style=flat-square)](https://npmjs.org/package/@slimr/styled)
2
2
 
3
- A tiny (2kb) React css-in-js library inspired by chakra-ui, emotion, and styled-components libs
3
+ A tiny (~2kb) React css-in-js library inspired by chakra-ui, emotion, and styled-components libs
4
4
 
5
5
  Demos: See `./packages/demo` or [CodeSandbox](https://codesandbox.io/s/64r9px?file=/src/App.tsx)
6
6
 
@@ -15,8 +15,9 @@ Pros:
15
15
  - Much less bundle size and runtime sluggishness
16
16
  - Less is more: less bugs, no breaking changes
17
17
  - Supports declaring css and styled components inside of Components for better code colocating and NO MORE NEED TO PASS ARGS!
18
- - Styled shortcuts like styled.div when imported from `@slimr/styled/withHtmlTags`. Note: To get types you'll need tsconfig:moduleResolution >= `Node16`
18
+ - Styled shortcuts like styled.div
19
19
  - Zx/Css shorthand props like [chakra-ui](https://chakra-ui.com/docs/styled-system/style-props):
20
+ - Most HTMLElements are enhanced and exported as pascal-case (i.e. `import {Div, A, Section, Flex} from '@slimr/styled'`)
20
21
  - Pass shorthand props or zx props to styled components. This lib will create css classes if complex, passthrough as styles otherwise.
21
22
  - `m` --> `margin`
22
23
  - `mx` --> `margin-left` and right
package/cjs/index.d.ts CHANGED
@@ -1,186 +1,4 @@
1
- /// <reference types="react" />
2
- import { styledBase as s } from './core.js';
3
1
  export * from '@slimr/css';
4
2
  export * from './core.js';
5
- export declare const styled: typeof s & {
6
- /** creates a 'a' component with css applied */
7
- a: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>;
8
- /** creates a 'abbr' component with css applied */
9
- abbr: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
10
- /** creates a 'address' component with css applied */
11
- address: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
12
- /** creates a 'area' component with css applied */
13
- area: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>>;
14
- /** creates a 'article' component with css applied */
15
- article: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
16
- /** creates a 'aside' component with css applied */
17
- aside: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
18
- /** creates a 'audio' component with css applied */
19
- audio: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>;
20
- /** creates a 'b' component with css applied */
21
- b: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
22
- /** creates a 'big' component with css applied; Deprecated so left out */
23
- /** creates a 'blockquote' component with css applied */
24
- blockquote: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
25
- /** creates a 'body' component with css applied; omitted bc doesnt seem useful */
26
- /** creates a 'br' component with css applied; omitted bc doesnt seem useful */
27
- br: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>>;
28
- /** creates a 'button' component with css applied */
29
- button: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>;
30
- /** creates a 'caption' component with css applied */
31
- caption: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
32
- /** creates a 'cite' component with css applied */
33
- cite: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
34
- /** creates a 'code' component with css applied */
35
- code: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
36
- /** creates a 'col' component with css applied */
37
- col: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
38
- /** creates a 'colgroup' component with css applied */
39
- colgroup: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>;
40
- /** creates a 'dd' component with css applied */
41
- dd: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
42
- /** creates a 'del' component with css applied */
43
- del: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLModElement>, HTMLModElement>>;
44
- /** creates a 'details' component with css applied */
45
- details: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>;
46
- /** creates a 'dfn' component with css applied */
47
- dfn: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
48
- /** creates a 'dialog' component with css applied */
49
- dialog: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>;
50
- /** creates a 'div' component with css applied */
51
- div: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
52
- /** creates a 'dl' component with css applied */
53
- dl: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>>;
54
- /** creates a 'dt' component with css applied */
55
- dt: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
56
- /** creates a 'em' component with css applied */
57
- em: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
58
- /** creates a 'embed' component with css applied */
59
- embed: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>;
60
- /** creates a 'fieldset' component with css applied */
61
- fieldset: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>;
62
- /** creates a 'figcaption' component with css applied */
63
- figcaption: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
64
- /** creates a 'figure' component with css applied */
65
- figure: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
66
- /** creates a 'footer' component with css applied */
67
- footer: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
68
- /** creates a 'form' component with css applied */
69
- form: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>;
70
- /** creates a 'h1' component with css applied */
71
- h1: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
72
- /** creates a 'h2' component with css applied */
73
- h2: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
74
- /** creates a 'h3' component with css applied */
75
- h3: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
76
- /** creates a 'h4' component with css applied */
77
- h4: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
78
- /** creates a 'h5' component with css applied */
79
- h5: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
80
- /** creates a 'h6' component with css applied */
81
- h6: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>;
82
- /** creates a 'header' component with css applied */
83
- header: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
84
- /** creates a 'hgroup' component with css applied */
85
- hgroup: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
86
- /** creates a 'hr' component with css applied */
87
- hr: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
88
- /** creates a 'i' component with css applied */
89
- i: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
90
- /** creates a 'iframe' component with css applied */
91
- iframe: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>;
92
- /** creates a 'img' component with css applied */
93
- img: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>;
94
- /** creates a 'input' component with css applied */
95
- input: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
96
- /** creates a 'ins' component with css applied */
97
- ins: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement>>;
98
- /** creates a 'kbd' component with css applied */
99
- kbd: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
100
- /** creates a 'label' component with css applied */
101
- label: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>;
102
- /** creates a 'legend' component with css applied */
103
- legend: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>;
104
- /** creates a 'li' component with css applied */
105
- li: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>;
106
- /** creates a 'main' component with css applied */
107
- main: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
108
- /** creates a 'map' component with css applied */
109
- map: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>>;
110
- /** creates a 'mark' component with css applied */
111
- mark: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
112
- /** creates a 'meter' component with css applied */
113
- meter: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>;
114
- /** creates a 'nav' component with css applied */
115
- nav: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
116
- /** creates a 'object' component with css applied */
117
- object: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>;
118
- /** creates a 'ol' component with css applied */
119
- ol: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>;
120
- /** creates a 'optgroup' component with css applied */
121
- optgroup: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>;
122
- /** creates a 'option' component with css applied */
123
- option: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>;
124
- /** creates a 'output' component with css applied */
125
- output: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>;
126
- /** creates a 'p' component with css applied */
127
- p: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>;
128
- /** creates a 'picture' component with css applied */
129
- picture: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
130
- /** creates a 'pre' component with css applied */
131
- pre: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>>;
132
- /** creates a 'progress' component with css applied */
133
- progress: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>;
134
- /** creates a 'q' component with css applied */
135
- q: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>;
136
- /** creates a 'rp' component with css applied */
137
- rp: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
138
- /** creates a 'rt' component with css applied */
139
- rt: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
140
- /** creates a 'ruby' component with css applied */
141
- ruby: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
142
- /** creates a 's' component with css applied */
143
- s: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
144
- /** creates a 'samp' component with css applied */
145
- samp: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
146
- /** creates a 'section' component with css applied */
147
- section: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
148
- /** creates a 'select' component with css applied */
149
- select: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>;
150
- /** creates a 'small' component with css applied */
151
- small: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
152
- /** creates a 'span' component with css applied */
153
- span: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
154
- /** creates a 'strong' component with css applied */
155
- strong: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
156
- /** creates a 'sub' component with css applied */
157
- sub: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
158
- /** creates a 'summary' component with css applied */
159
- summary: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
160
- /** creates a 'sup' component with css applied */
161
- sup: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
162
- /** creates a 'table' component with css applied */
163
- table: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>;
164
- /** creates a 'tbody' component with css applied */
165
- tbody: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
166
- /** creates a 'td' component with css applied */
167
- td: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>;
168
- /** creates a 'textarea' component with css applied */
169
- textarea: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
170
- /** creates a 'tfoot' component with css applied */
171
- tfoot: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
172
- /** creates a 'th' component with css applied */
173
- th: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>;
174
- /** creates a 'thead' component with css applied */
175
- thead: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>;
176
- /** creates a 'time' component with css applied */
177
- time: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>;
178
- /** creates a 'tr' component with css applied */
179
- tr: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>;
180
- /** creates a 'u' component with css applied */
181
- u: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>>;
182
- /** creates a 'ul' component with css applied */
183
- ul: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>>;
184
- /** creates a 'video' component with css applied */
185
- video: (strings: string | TemplateStringsArray, ...placeHolders: string[]) => import("./core.js").SC<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>;
186
- };
3
+ export * from './primitives.js';
4
+ export * from './styled.js';
package/cjs/index.js CHANGED
@@ -14,192 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.styled = void 0;
18
- const core_js_1 = require("./core.js");
19
17
  __exportStar(require("@slimr/css"), exports);
20
18
  __exportStar(require("./core.js"), exports);
21
- exports.styled = Object.assign(core_js_1.styledBase, {
22
- /** creates a 'a' component with css applied */
23
- a: (...p) => (0, core_js_1.styledBase)('a')(...p),
24
- /** creates a 'abbr' component with css applied */
25
- abbr: (...p) => (0, core_js_1.styledBase)('abbr')(...p),
26
- /** creates a 'address' component with css applied */
27
- address: (...p) => (0, core_js_1.styledBase)('address')(...p),
28
- /** creates a 'area' component with css applied */
29
- area: (...p) => (0, core_js_1.styledBase)('area')(...p),
30
- /** creates a 'article' component with css applied */
31
- article: (...p) => (0, core_js_1.styledBase)('article')(...p),
32
- /** creates a 'aside' component with css applied */
33
- aside: (...p) => (0, core_js_1.styledBase)('aside')(...p),
34
- /** creates a 'audio' component with css applied */
35
- audio: (...p) => (0, core_js_1.styledBase)('audio')(...p),
36
- /** creates a 'b' component with css applied */
37
- b: (...p) => (0, core_js_1.styledBase)('b')(...p),
38
- /** creates a 'big' component with css applied; Deprecated so left out */
39
- // big: (...p: TSP) => styled('big' as unk as FC<HTP['big']>)(...p),
40
- /** creates a 'blockquote' component with css applied */
41
- blockquote: (...p) => (0, core_js_1.styledBase)('blockquote')(...p),
42
- /** creates a 'body' component with css applied; omitted bc doesnt seem useful */
43
- // body: (...p: TSP) => styled('body' as unk as FC<HTP['body']>)(...p),
44
- /** creates a 'br' component with css applied; omitted bc doesnt seem useful */
45
- br: (...p) => (0, core_js_1.styledBase)('br')(...p),
46
- /** creates a 'button' component with css applied */
47
- button: (...p) => (0, core_js_1.styledBase)('button')(...p),
48
- /** creates a 'caption' component with css applied */
49
- caption: (...p) => (0, core_js_1.styledBase)('caption')(...p),
50
- /** creates a 'cite' component with css applied */
51
- cite: (...p) => (0, core_js_1.styledBase)('cite')(...p),
52
- /** creates a 'code' component with css applied */
53
- code: (...p) => (0, core_js_1.styledBase)('code')(...p),
54
- /** creates a 'col' component with css applied */
55
- col: (...p) => (0, core_js_1.styledBase)('col')(...p),
56
- /** creates a 'colgroup' component with css applied */
57
- colgroup: (...p) => (0, core_js_1.styledBase)('colgroup')(...p),
58
- /** creates a 'dd' component with css applied */
59
- dd: (...p) => (0, core_js_1.styledBase)('dd')(...p),
60
- /** creates a 'del' component with css applied */
61
- del: (...p) => (0, core_js_1.styledBase)('del')(...p),
62
- /** creates a 'details' component with css applied */
63
- details: (...p) => (0, core_js_1.styledBase)('details')(...p),
64
- /** creates a 'dfn' component with css applied */
65
- dfn: (...p) => (0, core_js_1.styledBase)('dfn')(...p),
66
- /** creates a 'dialog' component with css applied */
67
- dialog: (...p) => (0, core_js_1.styledBase)('dialog')(...p),
68
- /** creates a 'div' component with css applied */
69
- div: (...p) => (0, core_js_1.styledBase)('div')(...p),
70
- /** creates a 'dl' component with css applied */
71
- dl: (...p) => (0, core_js_1.styledBase)('dl')(...p),
72
- /** creates a 'dt' component with css applied */
73
- dt: (...p) => (0, core_js_1.styledBase)('dt')(...p),
74
- /** creates a 'em' component with css applied */
75
- em: (...p) => (0, core_js_1.styledBase)('em')(...p),
76
- /** creates a 'embed' component with css applied */
77
- embed: (...p) => (0, core_js_1.styledBase)('embed')(...p),
78
- /** creates a 'fieldset' component with css applied */
79
- fieldset: (...p) => (0, core_js_1.styledBase)('fieldset')(...p),
80
- /** creates a 'figcaption' component with css applied */
81
- figcaption: (...p) => (0, core_js_1.styledBase)('figcaption')(...p),
82
- /** creates a 'figure' component with css applied */
83
- figure: (...p) => (0, core_js_1.styledBase)('figure')(...p),
84
- /** creates a 'footer' component with css applied */
85
- footer: (...p) => (0, core_js_1.styledBase)('footer')(...p),
86
- /** creates a 'form' component with css applied */
87
- form: (...p) => (0, core_js_1.styledBase)('form')(...p),
88
- /** creates a 'h1' component with css applied */
89
- h1: (...p) => (0, core_js_1.styledBase)('h1')(...p),
90
- /** creates a 'h2' component with css applied */
91
- h2: (...p) => (0, core_js_1.styledBase)('h2')(...p),
92
- /** creates a 'h3' component with css applied */
93
- h3: (...p) => (0, core_js_1.styledBase)('h3')(...p),
94
- /** creates a 'h4' component with css applied */
95
- h4: (...p) => (0, core_js_1.styledBase)('h4')(...p),
96
- /** creates a 'h5' component with css applied */
97
- h5: (...p) => (0, core_js_1.styledBase)('h5')(...p),
98
- /** creates a 'h6' component with css applied */
99
- h6: (...p) => (0, core_js_1.styledBase)('h6')(...p),
100
- /** creates a 'header' component with css applied */
101
- header: (...p) => (0, core_js_1.styledBase)('header')(...p),
102
- /** creates a 'hgroup' component with css applied */
103
- hgroup: (...p) => (0, core_js_1.styledBase)('hgroup')(...p),
104
- /** creates a 'hr' component with css applied */
105
- hr: (...p) => (0, core_js_1.styledBase)('hr')(...p),
106
- /** creates a 'i' component with css applied */
107
- i: (...p) => (0, core_js_1.styledBase)('i')(...p),
108
- /** creates a 'iframe' component with css applied */
109
- iframe: (...p) => (0, core_js_1.styledBase)('iframe')(...p),
110
- /** creates a 'img' component with css applied */
111
- img: (...p) => (0, core_js_1.styledBase)('img')(...p),
112
- /** creates a 'input' component with css applied */
113
- input: (...p) => (0, core_js_1.styledBase)('input')(...p),
114
- /** creates a 'ins' component with css applied */
115
- ins: (...p) => (0, core_js_1.styledBase)('ins')(...p),
116
- /** creates a 'kbd' component with css applied */
117
- kbd: (...p) => (0, core_js_1.styledBase)('kbd')(...p),
118
- /** creates a 'label' component with css applied */
119
- label: (...p) => (0, core_js_1.styledBase)('label')(...p),
120
- /** creates a 'legend' component with css applied */
121
- legend: (...p) => (0, core_js_1.styledBase)('legend')(...p),
122
- /** creates a 'li' component with css applied */
123
- li: (...p) => (0, core_js_1.styledBase)('li')(...p),
124
- /** creates a 'main' component with css applied */
125
- main: (...p) => (0, core_js_1.styledBase)('main')(...p),
126
- /** creates a 'map' component with css applied */
127
- map: (...p) => (0, core_js_1.styledBase)('map')(...p),
128
- /** creates a 'mark' component with css applied */
129
- mark: (...p) => (0, core_js_1.styledBase)('mark')(...p),
130
- /** creates a 'meter' component with css applied */
131
- meter: (...p) => (0, core_js_1.styledBase)('meter')(...p),
132
- /** creates a 'nav' component with css applied */
133
- nav: (...p) => (0, core_js_1.styledBase)('nav')(...p),
134
- /** creates a 'object' component with css applied */
135
- object: (...p) => (0, core_js_1.styledBase)('object')(...p),
136
- /** creates a 'ol' component with css applied */
137
- ol: (...p) => (0, core_js_1.styledBase)('ol')(...p),
138
- /** creates a 'optgroup' component with css applied */
139
- optgroup: (...p) => (0, core_js_1.styledBase)('optgroup')(...p),
140
- /** creates a 'option' component with css applied */
141
- option: (...p) => (0, core_js_1.styledBase)('option')(...p),
142
- /** creates a 'output' component with css applied */
143
- output: (...p) => (0, core_js_1.styledBase)('output')(...p),
144
- /** creates a 'p' component with css applied */
145
- p: (...p) => (0, core_js_1.styledBase)('p')(...p),
146
- /** creates a 'picture' component with css applied */
147
- picture: (...p) => (0, core_js_1.styledBase)('picture')(...p),
148
- /** creates a 'pre' component with css applied */
149
- pre: (...p) => (0, core_js_1.styledBase)('pre')(...p),
150
- /** creates a 'progress' component with css applied */
151
- progress: (...p) => (0, core_js_1.styledBase)('progress')(...p),
152
- /** creates a 'q' component with css applied */
153
- q: (...p) => (0, core_js_1.styledBase)('q')(...p),
154
- /** creates a 'rp' component with css applied */
155
- rp: (...p) => (0, core_js_1.styledBase)('rp')(...p),
156
- /** creates a 'rt' component with css applied */
157
- rt: (...p) => (0, core_js_1.styledBase)('rt')(...p),
158
- /** creates a 'ruby' component with css applied */
159
- ruby: (...p) => (0, core_js_1.styledBase)('ruby')(...p),
160
- /** creates a 's' component with css applied */
161
- s: (...p) => (0, core_js_1.styledBase)('s')(...p),
162
- /** creates a 'samp' component with css applied */
163
- samp: (...p) => (0, core_js_1.styledBase)('samp')(...p),
164
- /** creates a 'section' component with css applied */
165
- section: (...p) => (0, core_js_1.styledBase)('section')(...p),
166
- /** creates a 'select' component with css applied */
167
- select: (...p) => (0, core_js_1.styledBase)('select')(...p),
168
- /** creates a 'small' component with css applied */
169
- small: (...p) => (0, core_js_1.styledBase)('small')(...p),
170
- /** creates a 'span' component with css applied */
171
- span: (...p) => (0, core_js_1.styledBase)('span')(...p),
172
- /** creates a 'strong' component with css applied */
173
- strong: (...p) => (0, core_js_1.styledBase)('strong')(...p),
174
- /** creates a 'sub' component with css applied */
175
- sub: (...p) => (0, core_js_1.styledBase)('sub')(...p),
176
- /** creates a 'summary' component with css applied */
177
- summary: (...p) => (0, core_js_1.styledBase)('summary')(...p),
178
- /** creates a 'sup' component with css applied */
179
- sup: (...p) => (0, core_js_1.styledBase)('sup')(...p),
180
- /** creates a 'table' component with css applied */
181
- table: (...p) => (0, core_js_1.styledBase)('table')(...p),
182
- /** creates a 'tbody' component with css applied */
183
- tbody: (...p) => (0, core_js_1.styledBase)('tbody')(...p),
184
- /** creates a 'td' component with css applied */
185
- td: (...p) => (0, core_js_1.styledBase)('td')(...p),
186
- /** creates a 'textarea' component with css applied */
187
- textarea: (...p) => (0, core_js_1.styledBase)('textarea')(...p),
188
- /** creates a 'tfoot' component with css applied */
189
- tfoot: (...p) => (0, core_js_1.styledBase)('tfoot')(...p),
190
- /** creates a 'th' component with css applied */
191
- th: (...p) => (0, core_js_1.styledBase)('th')(...p),
192
- /** creates a 'thead' component with css applied */
193
- thead: (...p) => (0, core_js_1.styledBase)('thead')(...p),
194
- /** creates a 'time' component with css applied */
195
- time: (...p) => (0, core_js_1.styledBase)('time')(...p),
196
- /** creates a 'tr' component with css applied */
197
- tr: (...p) => (0, core_js_1.styledBase)('tr')(...p),
198
- /** creates a 'u' component with css applied */
199
- u: (...p) => (0, core_js_1.styledBase)('u')(...p),
200
- /** creates a 'ul' component with css applied */
201
- ul: (...p) => (0, core_js_1.styledBase)('ul')(...p),
202
- /** creates a 'video' component with css applied */
203
- video: (...p) => (0, core_js_1.styledBase)('video')(...p),
204
- });
19
+ __exportStar(require("./primitives.js"), exports);
20
+ __exportStar(require("./styled.js"), exports);
205
21
  //# sourceMappingURL=index.js.map
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA0B;AAC1B,4CAAyB;AACzB,kDAA+B;AAC/B,8CAA2B"}