@withlayers/objects 0.1.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.
Files changed (2) hide show
  1. package/dist/index.css +1 -0
  2. package/package.json +26 -0
package/dist/index.css ADDED
@@ -0,0 +1 @@
1
+ .flow{--flow-space: var(--l--theme--space--60)}.flow>*+*{margin-block-start:var(--flow-space)}.flow>*+:where(audio,blockquote,figure,hr,img,pre,video),.flow>:where(audio,blockquote,figure,hr,img,pre,video)+*{--flow-space: var(--l--theme--space--90)}.flow>*+:where(h1,h2,h3,h4,h5,h6){--flow-space: var(--l--theme--space--100)}.flow>:where(h1,h2,h3,h4,h5,h6)+:where(p,ul,ol,dl,blockquote){--flow-space: var(--l--theme--space--60)}.flow>.has-flow-space-10+*,.flow>*+.has-flow-space-10{--flow-space: var(--l--theme--space--10)}.flow>.has-flow-space-20+*,.flow>*+.has-flow-space-20{--flow-space: var(--l--theme--space--20)}.flow>.has-flow-space-30+*,.flow>*+.has-flow-space-30{--flow-space: var(--l--theme--space--30)}.flow>.has-flow-space-40+*,.flow>*+.has-flow-space-40{--flow-space: var(--l--theme--space--40)}.flow>.has-flow-space-50+*,.flow>*+.has-flow-space-50{--flow-space: var(--l--theme--space--50)}.flow>.has-flow-space-60+*,.flow>*+.has-flow-space-60{--flow-space: var(--l--theme--space--60)}.flow>.has-flow-space-70+*,.flow>*+.has-flow-space-70{--flow-space: var(--l--theme--space--70)}.flow>.has-flow-space-80+*,.flow>*+.has-flow-space-80{--flow-space: var(--l--theme--space--80)}.flow>.has-flow-space-90+*,.flow>*+.has-flow-space-90{--flow-space: var(--l--theme--space--90)}.flow>.has-flow-space-100+*,.flow>*+.has-flow-space-100{--flow-space: var(--l--theme--space--100)}.flow>.has-flow-space-110+*,.flow>*+.has-flow-space-110{--flow-space: var(--l--theme--space--110)}.flow>.has-flow-space-120+*,.flow>*+.has-flow-space-120{--flow-space: var(--l--theme--space--120)}.measure>*{margin-inline-end:auto;margin-inline-start:auto;max-inline-size:min(var(--l--theme--measure--md),100% - var(--l--theme--layout--site-gutter) * 2)}.measure>.has-measure-sm{max-inline-size:min(var(--l--theme--measure--sm),100% - var(--l--theme--layout--site-gutter) * 2)}.measure>.has-measure-md{max-inline-size:min(var(--l--theme--measure--md),100% - var(--l--theme--layout--site-gutter) * 2)}.measure>.has-measure-lg{max-inline-size:min(var(--l--theme--measure--lg),100% - var(--l--theme--layout--site-gutter) * 2)}.measure>.has-measure-xl{max-inline-size:min(var(--l--theme--measure--xl),100% - var(--l--theme--layout--site-gutter) * 2)}.measure>.has-measure-xxl{max-inline-size:min(var(--l--theme--measure--xxl),100% - var(--l--theme--layout--site-gutter) * 2)}.measure>.has-measure-full{inline-size:100%;max-inline-size:none}.stack-10>*+*{margin-block-start:var(--l--theme--space--10)}.stack-20>*+*{margin-block-start:var(--l--theme--space--20)}.stack-30>*+*{margin-block-start:var(--l--theme--space--30)}.stack-40>*+*{margin-block-start:var(--l--theme--space--40)}.stack-50>*+*{margin-block-start:var(--l--theme--space--50)}.stack-60>*+*{margin-block-start:var(--l--theme--space--60)}.stack-70>*+*{margin-block-start:var(--l--theme--space--70)}.stack-80>*+*{margin-block-start:var(--l--theme--space--80)}.stack-90>*+*{margin-block-start:var(--l--theme--space--90)}.stack-100>*+*{margin-block-start:var(--l--theme--space--100)}.stack-110>*+*{margin-block-start:var(--l--theme--space--110)}.stack-120>*+*{margin-block-start:var(--l--theme--space--120)}
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@withlayers/objects",
3
+ "version": "0.1.0",
4
+ "description": "Objects layer",
5
+ "license": "MIT",
6
+ "author": "Dmitry Mayorov",
7
+ "type": "module",
8
+ "main": "dist/index.css",
9
+ "exports": {
10
+ ".": "./dist/index.css"
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "scripts": {
16
+ "build": "vite build",
17
+ "dev": "vite build --watch",
18
+ "lint:css": "stylelint \"src/**/*.css\"",
19
+ "lint:css:fix": "stylelint \"src/**/*.css\" --fix"
20
+ },
21
+ "dependencies": {
22
+ "@withlayers/mixins": "0.2.0",
23
+ "@withlayers/tokens": "0.3.0",
24
+ "postcss-mixins": "^11.0.3"
25
+ }
26
+ }