container-css 0.3.0
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/LICENSE +28 -0
- package/README.md +166 -0
- package/container-box.d.ts +172 -0
- package/container-box.d.ts.map +1 -0
- package/container-box.js +830 -0
- package/container-box.js.map +1 -0
- package/container-flex.d.ts +64 -0
- package/container-flex.d.ts.map +1 -0
- package/container-flex.js +344 -0
- package/container-flex.js.map +1 -0
- package/container-flexcol.d.ts +58 -0
- package/container-flexcol.d.ts.map +1 -0
- package/container-flexcol.js +319 -0
- package/container-flexcol.js.map +1 -0
- package/container-flexrow.d.ts +58 -0
- package/container-flexrow.d.ts.map +1 -0
- package/container-flexrow.js +319 -0
- package/container-flexrow.js.map +1 -0
- package/index.d.ts +5 -0
- package/index.d.ts.map +1 -0
- package/index.js +5 -0
- package/index.js.map +1 -0
- package/package.json +114 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 Google LLC. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
package/README.md
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# Container CSS
|
|
2
|
+
|
|
3
|
+
Looking to create a frontend development design kit that uses Web Components as it's primary technology. The idea is to be able to be used in any framework (or vanilla) but provide really nice property based styling so things are more controlled and validated by IDEs.
|
|
4
|
+
|
|
5
|
+
There's a TON of inspiration from:
|
|
6
|
+
- https://github.com/bridge-design/wc-design-system
|
|
7
|
+
- https://medium.com/@varyastepanova/web-components-in-action-how-to-build-a-design-system-ef7d94a7c798
|
|
8
|
+
- https://chakra-ui.com/
|
|
9
|
+
- https://chakra-ui.com/docs/styling/style-props/background (namely the use of props for all the styling)
|
|
10
|
+
|
|
11
|
+
For example a "Box" component would look something like:
|
|
12
|
+
```
|
|
13
|
+
<container-box w="full" bg="orange">
|
|
14
|
+
<p>Your content</p>
|
|
15
|
+
</container-box>
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
The goals are:
|
|
19
|
+
1. simple use of the components, it has to be easier to use than manually stying divs
|
|
20
|
+
2. all styling is handled via properties, we do not accept classes or styles
|
|
21
|
+
3. Containers (this library) all have the job of creating a space for content to fill, they are in charge of layout and some light styling.
|
|
22
|
+
4. Margins are NO NO, we do not allow margins
|
|
23
|
+
5. Flexbox is the primary building block, layering these flexboxes allows you to create any layout you'd normally use in the real world.
|
|
24
|
+
6. Responsive, the use of a "mdProps" "lgProps" "xlProps" properties to allow you to set attributes based on the size of the screen. There is no "small" version as that's what the root level properties are (mobile first). So you'd set props on a component based on that size (something like this, i've not fleshed this out yet, i'm not sure if we can send in object-like props like this into web components):
|
|
25
|
+
```
|
|
26
|
+
sm={{ w: 'full' }} md={{ w: 4 }}
|
|
27
|
+
```
|
|
28
|
+
7. All sizes are done in rems unless it's border which is handled in pixels.
|
|
29
|
+
|
|
30
|
+
## Available Components
|
|
31
|
+
|
|
32
|
+
- Box - This is a baseline container that provides an ability for padding and borders. This is often the last container before content.
|
|
33
|
+
- Flex - This is a root level flex container with the "direction" property so you can dynamically change the direction of the flex container.
|
|
34
|
+
- FlexRow - A flex container with the "row" direction.
|
|
35
|
+
- FlexCol - A flex container with the "column" direction.
|
|
36
|
+
|
|
37
|
+
## Setup
|
|
38
|
+
|
|
39
|
+
Install dependencies:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npm i
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Build
|
|
46
|
+
|
|
47
|
+
This sample uses the TypeScript compiler to produce JavaScript that runs in modern browsers.
|
|
48
|
+
|
|
49
|
+
To build the JavaScript version of your component:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npm run build
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
To watch files and rebuild when the files are modified, run the following command in a separate shell:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npm run build:watch
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Both the TypeScript compiler and lit-analyzer are configured to be very strict. You may want to change `tsconfig.json` to make them less strict.
|
|
62
|
+
|
|
63
|
+
## Testing
|
|
64
|
+
|
|
65
|
+
This sample uses modern-web.dev's
|
|
66
|
+
[@web/test-runner](https://www.npmjs.com/package/@web/test-runner) for testing. See the
|
|
67
|
+
[modern-web.dev testing documentation](https://modern-web.dev/docs/test-runner/overview) for
|
|
68
|
+
more information.
|
|
69
|
+
|
|
70
|
+
Tests can be run with the `test` script, which will run your tests against Lit's development mode (with more verbose errors) as well as against Lit's production mode:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
npm test
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
For local testing during development, the `test:dev:watch` command will run your tests in Lit's development mode (with verbose errors) on every change to your source files:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
npm test:watch
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Alternatively the `test:prod` and `test:prod:watch` commands will run your tests in Lit's production mode.
|
|
83
|
+
|
|
84
|
+
## Dev Server
|
|
85
|
+
|
|
86
|
+
This sample uses modern-web.dev's [@web/dev-server](https://www.npmjs.com/package/@web/dev-server) for previewing the project without additional build steps. Web Dev Server handles resolving Node-style "bare" import specifiers, which aren't supported in browsers. It also automatically transpiles JavaScript and adds polyfills to support older browsers. See [modern-web.dev's Web Dev Server documentation](https://modern-web.dev/docs/dev-server/overview/) for more information.
|
|
87
|
+
|
|
88
|
+
To run the dev server and open the project in a new browser tab:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
npm run serve
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
There is a development HTML file located at `/dev/index.html` that you can view at http://localhost:8000/dev/index.html. Note that this command will serve your code using Lit's development mode (with more verbose errors). To serve your code against Lit's production mode, use `npm run serve:prod`.
|
|
95
|
+
|
|
96
|
+
## Editing
|
|
97
|
+
|
|
98
|
+
If you use VS Code, we highly recommend the [lit-plugin extension](https://marketplace.visualstudio.com/items?itemName=runem.lit-plugin), which enables some extremely useful features for lit-html templates:
|
|
99
|
+
|
|
100
|
+
- Syntax highlighting
|
|
101
|
+
- Type-checking
|
|
102
|
+
- Code completion
|
|
103
|
+
- Hover-over docs
|
|
104
|
+
- Jump to definition
|
|
105
|
+
- Linting
|
|
106
|
+
- Quick Fixes
|
|
107
|
+
|
|
108
|
+
The project is setup to recommend lit-plugin to VS Code users if they don't already have it installed.
|
|
109
|
+
|
|
110
|
+
## Linting
|
|
111
|
+
|
|
112
|
+
Linting of TypeScript files is provided by [ESLint](eslint.org) and [TypeScript ESLint](https://github.com/typescript-eslint/typescript-eslint). In addition, [lit-analyzer](https://www.npmjs.com/package/lit-analyzer) is used to type-check and lint lit-html templates with the same engine and rules as lit-plugin.
|
|
113
|
+
|
|
114
|
+
The rules are mostly the recommended rules from each project, but some have been turned off to make LitElement usage easier. The recommended rules are pretty strict, so you may want to relax them by editing `.eslintrc.json` and `tsconfig.json`.
|
|
115
|
+
|
|
116
|
+
To lint the project run:
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
npm run lint
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
## Formatting
|
|
123
|
+
|
|
124
|
+
[Prettier](https://prettier.io/) is used for code formatting. It has been pre-configured according to the Lit's style. You can change this in `.prettierrc.json`.
|
|
125
|
+
|
|
126
|
+
Prettier has not been configured to run when committing files, but this can be added with Husky and `pretty-quick`. See the [prettier.io](https://prettier.io/) site for instructions.
|
|
127
|
+
|
|
128
|
+
## Static Site
|
|
129
|
+
|
|
130
|
+
This project includes a simple website generated with the [eleventy](https://11ty.dev) static site generator and the templates and pages in `/docs-src`. The site is generated to `/docs` and intended to be checked in so that GitHub pages can serve the site [from `/docs` on the main branch](https://help.github.com/en/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site).
|
|
131
|
+
|
|
132
|
+
To enable the site go to the GitHub settings and change the GitHub Pages "Source" setting to "main branch /docs folder".</p>
|
|
133
|
+
|
|
134
|
+
To build the site, run:
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
npm run docs
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
To serve the site locally, run:
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
npm run docs:serve
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
To watch the site files, and re-build automatically, run:
|
|
147
|
+
|
|
148
|
+
```bash
|
|
149
|
+
npm run docs:gen:watch
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
The site will usually be served at http://localhost:8000.
|
|
153
|
+
|
|
154
|
+
**Note**: The project uses Rollup to bundle and minify the source code for the docs site and not to publish to NPM. For bundling and minification, check the [Bundling and minification](#bundling-and-minification) section.
|
|
155
|
+
|
|
156
|
+
## Bundling and minification
|
|
157
|
+
|
|
158
|
+
As stated in the [static site generation](#static-site) section, the bundling and minification setup in the Rollup configuration in this project is there specifically for the docs generation.
|
|
159
|
+
|
|
160
|
+
We recommend publishing components as unoptimized JavaScript modules and performing build-time optimizations at the application level. This gives build tools the best chance to deduplicate code, remove dead code, and so on.
|
|
161
|
+
|
|
162
|
+
Please check the [Publishing best practices](https://lit.dev/docs/tools/publishing/#publishing-best-practices) for information on publishing reusable Web Components, and [Build for production](https://lit.dev/docs/tools/production/) for building application projects that include LitElement components, on the Lit site.
|
|
163
|
+
|
|
164
|
+
## More information
|
|
165
|
+
|
|
166
|
+
See [Get started](https://lit.dev/docs/getting-started/) on the Lit site for more information.
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
export declare class ContainerBox extends LitElement {
|
|
3
|
+
static styles: import("lit").CSSResult;
|
|
4
|
+
as?: 'main' | 'div' | 'footer' | 'header' | 'aside' | 'section' | 'article' | 'nav';
|
|
5
|
+
p?: string;
|
|
6
|
+
pb?: string;
|
|
7
|
+
bg?: string;
|
|
8
|
+
borderColor?: string;
|
|
9
|
+
borderRadius?: string;
|
|
10
|
+
borderStyle?: string;
|
|
11
|
+
borderW?: string;
|
|
12
|
+
borderTopW?: string;
|
|
13
|
+
borderTopStyle?: string;
|
|
14
|
+
borderTopColor?: string;
|
|
15
|
+
borderRightW?: string;
|
|
16
|
+
borderRightStyle?: string;
|
|
17
|
+
borderRightColor?: string;
|
|
18
|
+
borderBottomW?: string;
|
|
19
|
+
borderBottomStyle?: string;
|
|
20
|
+
borderBottomColor?: string;
|
|
21
|
+
borderLeftW?: string;
|
|
22
|
+
borderLeftStyle?: string;
|
|
23
|
+
borderLeftColor?: string;
|
|
24
|
+
flex?: string;
|
|
25
|
+
pl?: string;
|
|
26
|
+
pr?: string;
|
|
27
|
+
pt?: string;
|
|
28
|
+
w?: string;
|
|
29
|
+
minW?: string;
|
|
30
|
+
maxW?: string;
|
|
31
|
+
smP?: string;
|
|
32
|
+
smPb?: string;
|
|
33
|
+
smBg?: string;
|
|
34
|
+
smBorderColor?: string;
|
|
35
|
+
smBorderRadius?: string;
|
|
36
|
+
smBorderStyle?: string;
|
|
37
|
+
smBorderW?: string;
|
|
38
|
+
smBorderTopW?: string;
|
|
39
|
+
smBorderTopStyle?: string;
|
|
40
|
+
smBorderTopColor?: string;
|
|
41
|
+
smBorderRightW?: string;
|
|
42
|
+
smBorderRightStyle?: string;
|
|
43
|
+
smBorderRightColor?: string;
|
|
44
|
+
smBorderBottomW?: string;
|
|
45
|
+
smBorderBottomStyle?: string;
|
|
46
|
+
smBorderBottomColor?: string;
|
|
47
|
+
smBorderLeftW?: string;
|
|
48
|
+
smBorderLeftStyle?: string;
|
|
49
|
+
smBorderLeftColor?: string;
|
|
50
|
+
smFlex?: string;
|
|
51
|
+
smPl?: string;
|
|
52
|
+
smPr?: string;
|
|
53
|
+
smPt?: string;
|
|
54
|
+
smW?: string;
|
|
55
|
+
smMinW?: string;
|
|
56
|
+
smMaxW?: string;
|
|
57
|
+
mdP?: string;
|
|
58
|
+
mdPb?: string;
|
|
59
|
+
mdBg?: string;
|
|
60
|
+
mdBorderColor?: string;
|
|
61
|
+
mdBorderRadius?: string;
|
|
62
|
+
mdBorderStyle?: string;
|
|
63
|
+
mdBorderW?: string;
|
|
64
|
+
mdBorderTopW?: string;
|
|
65
|
+
mdBorderTopStyle?: string;
|
|
66
|
+
mdBorderTopColor?: string;
|
|
67
|
+
mdBorderRightW?: string;
|
|
68
|
+
mdBorderRightStyle?: string;
|
|
69
|
+
mdBorderRightColor?: string;
|
|
70
|
+
mdBorderBottomW?: string;
|
|
71
|
+
mdBorderBottomStyle?: string;
|
|
72
|
+
mdBorderBottomColor?: string;
|
|
73
|
+
mdBorderLeftW?: string;
|
|
74
|
+
mdBorderLeftStyle?: string;
|
|
75
|
+
mdBorderLeftColor?: string;
|
|
76
|
+
mdFlex?: string;
|
|
77
|
+
mdPl?: string;
|
|
78
|
+
mdPr?: string;
|
|
79
|
+
mdPt?: string;
|
|
80
|
+
mdW?: string;
|
|
81
|
+
mdMinW?: string;
|
|
82
|
+
mdMaxW?: string;
|
|
83
|
+
lgP?: string;
|
|
84
|
+
lgPb?: string;
|
|
85
|
+
lgBg?: string;
|
|
86
|
+
lgBorderColor?: string;
|
|
87
|
+
lgBorderRadius?: string;
|
|
88
|
+
lgBorderStyle?: string;
|
|
89
|
+
lgBorderW?: string;
|
|
90
|
+
lgBorderTopW?: string;
|
|
91
|
+
lgBorderTopStyle?: string;
|
|
92
|
+
lgBorderTopColor?: string;
|
|
93
|
+
lgBorderRightW?: string;
|
|
94
|
+
lgBorderRightStyle?: string;
|
|
95
|
+
lgBorderRightColor?: string;
|
|
96
|
+
lgBorderBottomW?: string;
|
|
97
|
+
lgBorderBottomStyle?: string;
|
|
98
|
+
lgBorderBottomColor?: string;
|
|
99
|
+
lgBorderLeftW?: string;
|
|
100
|
+
lgBorderLeftStyle?: string;
|
|
101
|
+
lgBorderLeftColor?: string;
|
|
102
|
+
lgFlex?: string;
|
|
103
|
+
lgPl?: string;
|
|
104
|
+
lgPr?: string;
|
|
105
|
+
lgPt?: string;
|
|
106
|
+
lgW?: string;
|
|
107
|
+
lgMinW?: string;
|
|
108
|
+
lgMaxW?: string;
|
|
109
|
+
xlP?: string;
|
|
110
|
+
xlPb?: string;
|
|
111
|
+
xlBg?: string;
|
|
112
|
+
xlBorderColor?: string;
|
|
113
|
+
xlBorderRadius?: string;
|
|
114
|
+
xlBorderStyle?: string;
|
|
115
|
+
xlBorderW?: string;
|
|
116
|
+
xlBorderTopW?: string;
|
|
117
|
+
xlBorderTopStyle?: string;
|
|
118
|
+
xlBorderTopColor?: string;
|
|
119
|
+
xlBorderRightW?: string;
|
|
120
|
+
xlBorderRightStyle?: string;
|
|
121
|
+
xlBorderRightColor?: string;
|
|
122
|
+
xlBorderBottomW?: string;
|
|
123
|
+
xlBorderBottomStyle?: string;
|
|
124
|
+
xlBorderBottomColor?: string;
|
|
125
|
+
xlBorderLeftW?: string;
|
|
126
|
+
xlBorderLeftStyle?: string;
|
|
127
|
+
xlBorderLeftColor?: string;
|
|
128
|
+
xlFlex?: string;
|
|
129
|
+
xlPl?: string;
|
|
130
|
+
xlPr?: string;
|
|
131
|
+
xlPt?: string;
|
|
132
|
+
xlW?: string;
|
|
133
|
+
xlMinW?: string;
|
|
134
|
+
xlMaxW?: string;
|
|
135
|
+
xxlP?: string;
|
|
136
|
+
xxlPb?: string;
|
|
137
|
+
xxlBg?: string;
|
|
138
|
+
xxlBorderColor?: string;
|
|
139
|
+
xxlBorderRadius?: string;
|
|
140
|
+
xxlBorderStyle?: string;
|
|
141
|
+
xxlBorderW?: string;
|
|
142
|
+
xxlBorderTopW?: string;
|
|
143
|
+
xxlBorderTopStyle?: string;
|
|
144
|
+
xxlBorderTopColor?: string;
|
|
145
|
+
xxlBorderRightW?: string;
|
|
146
|
+
xxlBorderRightStyle?: string;
|
|
147
|
+
xxlBorderRightColor?: string;
|
|
148
|
+
xxlBorderBottomW?: string;
|
|
149
|
+
xxlBorderBottomStyle?: string;
|
|
150
|
+
xxlBorderBottomColor?: string;
|
|
151
|
+
xxlBorderLeftW?: string;
|
|
152
|
+
xxlBorderLeftStyle?: string;
|
|
153
|
+
xxlBorderLeftColor?: string;
|
|
154
|
+
xxlFlex?: string;
|
|
155
|
+
xxlPl?: string;
|
|
156
|
+
xxlPr?: string;
|
|
157
|
+
xxlPt?: string;
|
|
158
|
+
xxlW?: string;
|
|
159
|
+
xxlMinW?: string;
|
|
160
|
+
xxlMaxW?: string;
|
|
161
|
+
private formatWidth;
|
|
162
|
+
private buildWrapperStyles;
|
|
163
|
+
private buildHostStyles;
|
|
164
|
+
private buildMediaQueries;
|
|
165
|
+
render(): import("lit-html").TemplateResult;
|
|
166
|
+
}
|
|
167
|
+
declare global {
|
|
168
|
+
interface HTMLElementTagNameMap {
|
|
169
|
+
'container-box': ContainerBox;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
//# sourceMappingURL=container-box.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"container-box.d.ts","sourceRoot":"","sources":["src/container-box.ts"],"names":[],"mappings":"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"}
|