@functionalcms/svelte-components 2.1.15 → 2.1.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@functionalcms/svelte-components",
3
- "version": "2.1.15",
3
+ "version": "2.1.16",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build-css": "sass ./src/lib/css/properties.scss ./css/functional.css",
@@ -16,13 +16,13 @@
16
16
  "types": "./dist/index.d.ts",
17
17
  "svelte": "./dist/index.js"
18
18
  },
19
- "./dist/css/properties.css": "./dist/css/properties.css",
20
- "./css/properties.css": "./dist/css/properties.css",
19
+ "./css/functional.css": "./css/functional.css",
21
20
  "./package.json": "./package.json"
22
21
  },
23
22
  "files": [
24
23
  "dist",
25
24
  "css",
25
+ "!dist/css/**/*.*",
26
26
  "!dist/**/*.test.*",
27
27
  "!dist/**/*.spec.*"
28
28
  ],
@@ -1,75 +0,0 @@
1
- @import '../../../node_modules/agnostic-svelte/css/common.min';
2
-
3
- html, body, body > div { height: 100%; }
4
-
5
- .fw { width:100%; }
6
-
7
- .flex-row { flex-direction: row; }
8
- .flex-column { flex-direction: column; }
9
- .flex-row-dynamic { flex-direction: column; }
10
-
11
- .h0 { height: 0 !important; }
12
- .h2 { height: var(--fluid-2) !important; }
13
- .h4 { height: var(--fluid-4) !important; }
14
- .h6 { height: var(--fluid-6) !important; }
15
- .h8 { height: var(--fluid-8) !important; }
16
- .h10 { height: var(--fluid-10) !important; }
17
- .h12 { height: var(--fluid-12) !important; }
18
- .h14 { height: var(--fluid-14) !important; }
19
- .h16 { height: var(--fluid-16) !important; }
20
- .h18 { height: var(--fluid-18) !important; }
21
- .h20 { height: var(--fluid-20) !important; }
22
- .h24 { height: var(--fluid-24) !important; }
23
- .h32 { height: var(--fluid-32) !important; }
24
- .h36 { height: var(--fluid-36) !important; }
25
- .h40 { height: var(--fluid-40) !important; }
26
- .h48 { height: var(--fluid-48) !important; }
27
- .h56 { height: var(--fluid-56) !important; }
28
- .h64 { height: var(--fluid-64) !important; }
29
-
30
- .h33p { height: 33% !important; }
31
- .h66p { height: 66% !important; }
32
- .h25p { height: 25% !important; }
33
- .h75p { height: 75% !important; }
34
- .h50p { height: 50% !important; }
35
-
36
- .w0 { width: 0 !important; }
37
- .w2 { width: var(--fluid-2) !important; }
38
- .w4 { width: var(--fluid-4) !important; }
39
- .w6 { width: var(--fluid-6) !important; }
40
- .w8 { width: var(--fluid-8) !important; }
41
- .w10 { width: var(--fluid-10) !important; }
42
- .w12 { width: var(--fluid-12) !important; }
43
- .w14 { width: var(--fluid-14) !important; }
44
- .w16 { width: var(--fluid-16) !important; }
45
- .w18 { width: var(--fluid-18) !important; }
46
- .w20 { width: var(--fluid-20) !important; }
47
- .w24 { width: var(--fluid-24) !important; }
48
- .w32 { width: var(--fluid-32) !important; }
49
- .w36 { width: var(--fluid-36) !important; }
50
- .w40 { width: var(--fluid-40) !important; }
51
- .w48 { width: var(--fluid-48) !important; }
52
- .w56 { width: var(--fluid-56) !important; }
53
- .w64 { width: var(--fluid-64) !important; }
54
-
55
- .w33p { width: 100% !important; }
56
- .w66p { width: 100% !important; }
57
- .w25p { width: 100% !important; }
58
- .w75p { width: 100% !important; }
59
- .w50p { width: 100% !important; }
60
-
61
- @media (min-width: 960px) {
62
- .flex-row-dynamic { flex-direction: row; }
63
-
64
- .w33p { width: 33% !important; }
65
- .w66p { width: 66% !important; }
66
- .w25p { width: 25% !important; }
67
- .w75p { width: 75% !important; }
68
- .w50p { width: 50% !important; }
69
-
70
- .h33p { height: 33% !important; }
71
- .h66p { height: 66% !important; }
72
- .h25p { height: 25% !important; }
73
- .h75p { height: 75% !important; }
74
- .h50p { height: 50% !important; }
75
- }