@echodial/deck 0.1.2 → 0.1.3

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
@@ -4,7 +4,7 @@
4
4
  [![Packagist version](https://img.shields.io/packagist/v/echodial/deck)](https://packagist.org/packages/echodial/deck)
5
5
  [![License: MIT](https://img.shields.io/npm/l/@echodial/deck)](LICENSE)
6
6
 
7
- **Deck is a CSS framework that ships as one 26.7 KB Brotli (32.7 KB gzip) stylesheet: buttons, forms,
7
+ **Deck is a CSS framework that ships as one 26.8 KB Brotli (32.7 KB gzip) stylesheet: buttons, forms,
8
8
  tables, a data grid, charts, overlays, an icon sprite, and a full color system. You add it
9
9
  with one `<link>` tag. There is no build step, no config file, and zero dependencies.**
10
10
 
@@ -23,7 +23,7 @@ That is the whole install. Nothing to compile, nothing to purge, nothing to conf
23
23
  whole page with no second stylesheet.
24
24
  - **Zero runtime dependencies.** The JavaScript is optional and dependency-free.
25
25
 
26
- Version 0.1.2 · MIT · Chrome 117+, Edge 117+, Safari 17.4+, Firefox 128+
26
+ Version 0.1.3 · MIT · Chrome 117+, Edge 117+, Safari 17.4+, Firefox 128+
27
27
 
28
28
  ## What Deck weighs
29
29
 
@@ -33,14 +33,14 @@ it for text by default, so Brotli is what most users actually receive.
33
33
 
34
34
  | File | Brotli | gzip |
35
35
  | --- | --- | --- |
36
- | `deck.min.css` | **26.7 KB** | 32.7 KB |
36
+ | `deck.min.css` | **26.8 KB** | 32.7 KB |
37
37
  | `deck-icons.svg` | **27.1 KB** | 33.6 KB |
38
38
  | `deck.min.js` | **8.9 KB** | 10.0 KB |
39
39
  | **All three** | **62.8 KB** | **76.3 KB** |
40
40
 
41
41
  The sprite is the largest single file, slightly bigger than the stylesheet — worth stating
42
42
  plainly rather than leaving you to find it in devtools. Swapping `deck.min.js` for the full
43
- `deck.bundle.min.js` (adds the date picker, combobox, data grid, toasts, QR encoder)
43
+ `deck.bundle.min.js` (adds the carousel, drawer, mega menu, copy button, QR encoder, editor and library adapters)
44
44
  makes the JavaScript 17.3 KB and the total 71.2 KB Brotli (85.8 KB gzip).
45
45
 
46
46
  ### The sprite is a manifest, not a fixed cost
@@ -74,9 +74,9 @@ brand marks through from the previous sprite, and dropping them drops the marks.
74
74
 
75
75
  | File | Brotli | gzip | What it is |
76
76
  | --- | --- | --- | --- |
77
- | `deck.min.css` | 26.7 KB | 32.7 KB | The whole framework |
77
+ | `deck.min.css` | 26.8 KB | 32.7 KB | The whole framework |
78
78
  | `deck.min.js` | 8.9 KB | 10.0 KB | Optional behaviour, no dependencies |
79
- | `deck-extras.min.js` | 5.7 KB | 6.5 KB | Date picker, combobox, data grid, toasts, QR encoder |
79
+ | `deck-extras.min.js` | 5.7 KB | 6.5 KB | Carousel, drawer, mega menu, copy button, QR encoder, editor |
80
80
  | `deck-adapters.min.js` | 4.0 KB | 4.5 KB | Optional library integrations, inert unless one is loaded |
81
81
  | `deck.bundle.min.js` | 17.3 KB | 19.5 KB | All three scripts in one file |
82
82
  | `deck-icons.svg` | 27.1 KB | 33.6 KB | 152 symbols: 75 icons at two weights, plus two brand marks |
@@ -183,9 +183,12 @@ npm install @echodial/deck
183
183
 
184
184
  ```js
185
185
  import '@echodial/deck/css';
186
- import Deck from '@echodial/deck';
186
+ import '@echodial/deck/bundle'; // sets window.Deck
187
187
  ```
188
188
 
189
+ In 0.1.2, `import Deck from '@echodial/deck'` does not build: the file it resolves to ends in
190
+ an export that is not valid JavaScript. Import the bundle for its side effect instead.
191
+
189
192
  Subpath exports, so you can take only what you need:
190
193
 
191
194
  | Import | What it is |
@@ -193,8 +196,8 @@ Subpath exports, so you can take only what you need:
193
196
  | `@echodial/deck/css` | the whole stylesheet |
194
197
  | `@echodial/deck/css/min` | minified |
195
198
  | `@echodial/deck/icons` | the sprite |
196
- | `@echodial/deck/js` | core behaviour |
197
- | `@echodial/deck/extras` | datepicker, combobox, grid, toasts, QR |
199
+ | `@echodial/deck/js` | core behaviour: toasts, theme switch, date picker, combobox, data grid |
200
+ | `@echodial/deck/extras` | carousel, drawer, mega menu, copy button, QR, editor |
198
201
  | `@echodial/deck/adapters` | optional library integrations |
199
202
  | `@echodial/deck/bundle` | all three in one file |
200
203
  | `@echodial/deck/layers/tokens.css` | one layer at a time |
package/build.mjs CHANGED
@@ -287,7 +287,7 @@ async function build() {
287
287
  `/* Deck v${pkg.version} — ES module entry.\n` +
288
288
  ` The scripts attach Deck to globalThis; this re-exports it so that\n` +
289
289
  ` \`import Deck from '@echodial/deck'\` behaves the way you expect. */\n` +
290
- bundle + '\nexport default globalThis.Deck;\nexport { globalThis as __deckGlobal };\n');
290
+ bundle + '\nexport default globalThis.Deck;\n');
291
291
 
292
292
  // ---- Sizes ---------------------------------------------------------------
293
293
  // One place for every published figure. dist/sizes.json is the single source
@@ -965,7 +965,7 @@
965
965
  "layer": "deck.components",
966
966
  "file": "07-components.css",
967
967
  "line": 431,
968
- "uses": 12
968
+ "uses": 14
969
969
  },
970
970
  "accordion-body": {
971
971
  "bucket": "public",
@@ -975,7 +975,7 @@
975
975
  "layer": "deck.components",
976
976
  "file": "07-components.css",
977
977
  "line": 460,
978
- "uses": 23
978
+ "uses": 25
979
979
  },
980
980
  "actions-cq": {
981
981
  "bucket": "public",
@@ -1005,7 +1005,7 @@
1005
1005
  "layer": "deck.components",
1006
1006
  "file": "07-components.css",
1007
1007
  "line": 146,
1008
- "uses": 58
1008
+ "uses": 60
1009
1009
  },
1010
1010
  "alert-bad": {
1011
1011
  "bucket": "public",
@@ -1015,7 +1015,7 @@
1015
1015
  "layer": "deck.components",
1016
1016
  "file": "07-components.css",
1017
1017
  "line": 169,
1018
- "uses": 10
1018
+ "uses": 12
1019
1019
  },
1020
1020
  "alert-body": {
1021
1021
  "bucket": "public",
@@ -1025,7 +1025,7 @@
1025
1025
  "layer": "deck.components",
1026
1026
  "file": "07-components.css",
1027
1027
  "line": 160,
1028
- "uses": 47
1028
+ "uses": 49
1029
1029
  },
1030
1030
  "alert-good": {
1031
1031
  "bucket": "public",
@@ -1045,7 +1045,7 @@
1045
1045
  "layer": "deck.components",
1046
1046
  "file": "07-components.css",
1047
1047
  "line": 163,
1048
- "uses": 16
1048
+ "uses": 18
1049
1049
  },
1050
1050
  "alert-title": {
1051
1051
  "bucket": "public",
@@ -1055,7 +1055,7 @@
1055
1055
  "layer": "deck.components",
1056
1056
  "file": "07-components.css",
1057
1057
  "line": 157,
1058
- "uses": 47
1058
+ "uses": 49
1059
1059
  },
1060
1060
  "alert-warn": {
1061
1061
  "bucket": "public",
@@ -1065,7 +1065,7 @@
1065
1065
  "layer": "deck.components",
1066
1066
  "file": "07-components.css",
1067
1067
  "line": 167,
1068
- "uses": 18
1068
+ "uses": 16
1069
1069
  },
1070
1070
  "anchor": {
1071
1071
  "bucket": "public",
@@ -1185,7 +1185,7 @@
1185
1185
  "layer": "deck.components",
1186
1186
  "file": "07-components.css",
1187
1187
  "line": 81,
1188
- "uses": 194
1188
+ "uses": 196
1189
1189
  },
1190
1190
  "badge-bad": {
1191
1191
  "bucket": "public",
@@ -1225,7 +1225,7 @@
1225
1225
  "layer": "deck.components",
1226
1226
  "file": "07-components.css",
1227
1227
  "line": 98,
1228
- "uses": 44
1228
+ "uses": 46
1229
1229
  },
1230
1230
  "badge-solid": {
1231
1231
  "bucket": "public",
@@ -1485,7 +1485,7 @@
1485
1485
  "layer": "deck.components",
1486
1486
  "file": "05-buttons.css",
1487
1487
  "line": 7,
1488
- "uses": 564
1488
+ "uses": 568
1489
1489
  },
1490
1490
  "btn-3d": {
1491
1491
  "bucket": "public",
@@ -1595,7 +1595,7 @@
1595
1595
  "layer": "deck.components",
1596
1596
  "file": "05-buttons.css",
1597
1597
  "line": 72,
1598
- "uses": 121
1598
+ "uses": 123
1599
1599
  },
1600
1600
  "btn-round": {
1601
1601
  "bucket": "public",
@@ -2275,7 +2275,7 @@
2275
2275
  "layer": "deck.components",
2276
2276
  "file": "06-forms.css",
2277
2277
  "line": 175,
2278
- "uses": 128
2278
+ "uses": 129
2279
2279
  },
2280
2280
  "check-card": {
2281
2281
  "bucket": "public",
@@ -2355,7 +2355,7 @@
2355
2355
  "layer": "deck.layout",
2356
2356
  "file": "04-layout.css",
2357
2357
  "line": 74,
2358
- "uses": 367
2358
+ "uses": 369
2359
2359
  },
2360
2360
  "cluster-between": {
2361
2361
  "bucket": "public",
@@ -2635,7 +2635,7 @@
2635
2635
  "layer": "deck.layout",
2636
2636
  "file": "04-layout.css",
2637
2637
  "line": 11,
2638
- "uses": 99
2638
+ "uses": 101
2639
2639
  },
2640
2640
  "container-full": {
2641
2641
  "bucket": "public",
@@ -3795,7 +3795,7 @@
3795
3795
  "layer": "deck.mobile",
3796
3796
  "file": "08-mobile.css",
3797
3797
  "line": 183,
3798
- "uses": 60
3798
+ "uses": 61
3799
3799
  },
3800
3800
  "emoji-grid": {
3801
3801
  "bucket": "public",
@@ -4995,7 +4995,7 @@
4995
4995
  "layer": "deck.mobile",
4996
4996
  "file": "08-mobile.css",
4997
4997
  "line": 134,
4998
- "uses": 618
4998
+ "uses": 627
4999
4999
  },
5000
5000
  "icon-fill": {
5001
5001
  "bucket": "public",
@@ -5005,7 +5005,7 @@
5005
5005
  "layer": "deck.mobile",
5006
5006
  "file": "08-mobile.css",
5007
5007
  "line": 156,
5008
- "uses": 12
5008
+ "uses": 14
5009
5009
  },
5010
5010
  "icon-follow": {
5011
5011
  "bucket": "public",
@@ -5025,7 +5025,7 @@
5025
5025
  "layer": "deck.mobile",
5026
5026
  "file": "08-mobile.css",
5027
5027
  "line": 154,
5028
- "uses": 85
5028
+ "uses": 89
5029
5029
  },
5030
5030
  "icon-muted": {
5031
5031
  "bucket": "public",
@@ -5975,7 +5975,7 @@
5975
5975
  "layer": "deck.type",
5976
5976
  "file": "03-type.css",
5977
5977
  "line": 29,
5978
- "uses": 210
5978
+ "uses": 212
5979
5979
  },
5980
5980
  "lg": {
5981
5981
  "bucket": "public",
@@ -7985,7 +7985,7 @@
7985
7985
  "layer": "deck.components",
7986
7986
  "file": "06-forms.css",
7987
7987
  "line": 288,
7988
- "uses": 56
7988
+ "uses": 59
7989
7989
  },
7990
7990
  "range-pair": {
7991
7991
  "bucket": "public",
@@ -8445,7 +8445,7 @@
8445
8445
  "layer": "deck.layout",
8446
8446
  "file": "04-layout.css",
8447
8447
  "line": 161,
8448
- "uses": 86
8448
+ "uses": 88
8449
8449
  },
8450
8450
  "segmented": {
8451
8451
  "bucket": "public",
@@ -8895,7 +8895,7 @@
8895
8895
  "layer": "deck.utilities",
8896
8896
  "file": "09-utilities.css",
8897
8897
  "line": 182,
8898
- "uses": 125
8898
+ "uses": 137
8899
8899
  },
8900
8900
  "stack": {
8901
8901
  "bucket": "public",
@@ -8935,7 +8935,7 @@
8935
8935
  "layer": "deck.layout",
8936
8936
  "file": "04-layout.css",
8937
8937
  "line": 63,
8938
- "uses": 485
8938
+ "uses": 487
8939
8939
  },
8940
8940
  "stack-3": {
8941
8941
  "bucket": "public",
@@ -8945,7 +8945,7 @@
8945
8945
  "layer": "deck.layout",
8946
8946
  "file": "04-layout.css",
8947
8947
  "line": 65,
8948
- "uses": 2144
8948
+ "uses": 2150
8949
8949
  },
8950
8950
  "stack-4": {
8951
8951
  "bucket": "public",
@@ -8965,7 +8965,7 @@
8965
8965
  "layer": "deck.layout",
8966
8966
  "file": "04-layout.css",
8967
8967
  "line": 69,
8968
- "uses": 140
8968
+ "uses": 142
8969
8969
  },
8970
8970
  "stack-8": {
8971
8971
  "bucket": "public",
@@ -9245,7 +9245,7 @@
9245
9245
  "layer": "deck.components",
9246
9246
  "file": "07-components.css",
9247
9247
  "line": 241,
9248
- "uses": 112
9248
+ "uses": 124
9249
9249
  },
9250
9250
  "table-compact": {
9251
9251
  "bucket": "public",
@@ -9265,7 +9265,7 @@
9265
9265
  "layer": "deck.components",
9266
9266
  "file": "07-components.css",
9267
9267
  "line": 274,
9268
- "uses": 100
9268
+ "uses": 112
9269
9269
  },
9270
9270
  "table-wrap": {
9271
9271
  "bucket": "public",
@@ -9275,7 +9275,7 @@
9275
9275
  "layer": "deck.components",
9276
9276
  "file": "07-components.css",
9277
9277
  "line": 231,
9278
- "uses": 109
9278
+ "uses": 121
9279
9279
  },
9280
9280
  "tabs": {
9281
9281
  "bucket": "public",
@@ -9605,7 +9605,7 @@
9605
9605
  "layer": "deck.components",
9606
9606
  "file": "13-toasts.css",
9607
9607
  "line": 49,
9608
- "uses": 36
9608
+ "uses": 38
9609
9609
  },
9610
9610
  "toast-action": {
9611
9611
  "bucket": "internal",
package/dist/deck.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*! ==========================================================================
2
- * Deck v0.1.2 — the CSS framework for Keel
2
+ * Deck v0.1.3 — the CSS framework for Keel
3
3
  * Mobile first. One file. No build step. No config. No dependencies.
4
4
  *
5
5
  * <link rel="stylesheet" href="/assets/deck.css">
package/dist/deck.esm.js CHANGED
@@ -1,4 +1,4 @@
1
- /* Deck v0.1.2 — ES module entry.
1
+ /* Deck v0.1.3 — ES module entry.
2
2
  The scripts attach Deck to globalThis; this re-exports it so that
3
3
  `import Deck from '@echodial/deck'` behaves the way you expect. */
4
4
  /*! ==========================================================================
@@ -2641,4 +2641,3 @@ if (typeof module !== 'undefined' && module.exports) module.exports = Deck;
2641
2641
  : typeof Deck !== 'undefined' ? Deck : null);
2642
2642
 
2643
2643
  export default globalThis.Deck;
2644
- export { globalThis as __deckGlobal };
package/dist/deck.min.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*! ==========================================================================
2
- * Deck v0.1.2 — the CSS framework for Keel
2
+ * Deck v0.1.3 — the CSS framework for Keel
3
3
  * Mobile first. One file. No build step. No config. No dependencies.
4
4
  *
5
5
  * <link rel="stylesheet" href="/assets/deck.css">
@@ -15,7 +15,7 @@
15
15
  * MIT licence. https://get-deck.dev
16
16
  * ======================================================================== */
17
17
  /*! ==========================================================================
18
- * Deck v0.1.2 — the CSS framework for Keel
18
+ * Deck v0.1.3 — the CSS framework for Keel
19
19
  * Mobile first. One file. No build step. No config. No dependencies.
20
20
  *
21
21
  * <link rel="stylesheet" href="/assets/deck.css">
package/dist/sizes.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
- "version": "0.1.2",
2
+ "version": "0.1.3",
3
3
  "note": "Generated by build.mjs. Do not edit. Brotli is quality 11 with a size hint.",
4
4
  "files": {
5
5
  "deck.min.css": {
6
6
  "raw": 172836,
7
7
  "gzip": 32706,
8
- "brotli": 26712
8
+ "brotli": 26757
9
9
  },
10
10
  "deck-icons.svg": {
11
11
  "raw": 110032,
@@ -36,11 +36,11 @@
36
36
  "totals": {
37
37
  "core": {
38
38
  "gzip": 76268,
39
- "brotli": 62757
39
+ "brotli": 62802
40
40
  },
41
41
  "bundle": {
42
42
  "gzip": 85780,
43
- "brotli": 71157
43
+ "brotli": 71202
44
44
  }
45
45
  },
46
46
  "sample": {
package/dist/usage.json CHANGED
@@ -7,59 +7,59 @@
7
7
  "unused": 17
8
8
  },
9
9
  "uses": {
10
- "stack-3": 2144,
10
+ "stack-3": 2150,
11
11
  "text-muted": 858,
12
- "icon": 618,
13
- "btn": 564,
14
- "stack-2": 485,
15
- "cluster": 367,
12
+ "icon": 627,
13
+ "btn": 568,
14
+ "stack-2": 487,
15
+ "cluster": 369,
16
16
  "stack-4": 314,
17
17
  "stack": 303,
18
18
  "card": 265,
19
19
  "cluster-tight": 246,
20
- "lede": 210,
20
+ "lede": 212,
21
21
  "card-body": 201,
22
- "badge": 194,
22
+ "badge": 196,
23
23
  "breadcrumb": 191,
24
24
  "label": 189,
25
25
  "btn-sm": 184,
26
26
  "field": 177,
27
27
  "text-sm": 169,
28
28
  "input": 164,
29
- "stack-6": 140,
29
+ "stack-6": 142,
30
30
  "icon-sm": 139,
31
- "check": 128,
32
- "sr-only": 125,
33
- "btn-primary": 121,
34
- "table": 112,
35
- "table-wrap": 109,
31
+ "sr-only": 137,
32
+ "check": 129,
33
+ "table": 124,
34
+ "btn-primary": 123,
35
+ "table-wrap": 121,
36
+ "table-stack": 112,
36
37
  "btn-ghost": 109,
37
- "table-stack": 100,
38
- "container": 99,
38
+ "container": 101,
39
39
  "grid": 96,
40
40
  "card-title": 95,
41
41
  "push": 94,
42
+ "icon-lg": 89,
43
+ "section": 88,
42
44
  "fw-semi": 88,
43
- "section": 86,
44
- "icon-lg": 85,
45
45
  "avatar": 81,
46
46
  "btn-icon": 77,
47
47
  "dg-num": 74,
48
48
  "tab": 65,
49
- "emoji": 60,
49
+ "emoji": 61,
50
+ "alert": 60,
50
51
  "skeleton": 60,
51
- "alert": 58,
52
- "range": 56,
52
+ "range": 59,
53
53
  "num": 55,
54
54
  "sidebar-link": 55,
55
55
  "icon-tile": 52,
56
56
  "grid-tight": 50,
57
+ "alert-title": 49,
58
+ "alert-body": 49,
57
59
  "switch": 48,
58
60
  "split": 48,
59
- "alert-title": 47,
60
- "alert-body": 47,
61
+ "badge-good": 46,
61
62
  "list-row": 46,
62
- "badge-good": 44,
63
63
  "select": 44,
64
64
  "check-text": 42,
65
65
  "menu-item": 42,
@@ -70,9 +70,9 @@
70
70
  "file": 39,
71
71
  "textarea": 38,
72
72
  "list": 38,
73
+ "toast": 38,
73
74
  "s1": 36,
74
75
  "enter-rise": 36,
75
- "toast": 36,
76
76
  "list-main": 35,
77
77
  "list-title": 35,
78
78
  "number": 35,
@@ -92,6 +92,7 @@
92
92
  "lazy": 26,
93
93
  "segmented": 26,
94
94
  "tip": 26,
95
+ "accordion-body": 25,
95
96
  "chart": 25,
96
97
  "dg-check": 25,
97
98
  "editor-tool": 25,
@@ -99,7 +100,6 @@
99
100
  "step": 25,
100
101
  "is-invalid": 24,
101
102
  "dg-pin-start": 24,
102
- "accordion-body": 23,
103
103
  "navbar": 23,
104
104
  "chart-bar-fill": 23,
105
105
  "icon-tile-lg": 23,
@@ -137,7 +137,7 @@
137
137
  "sidebar-group": 19,
138
138
  "stack-8": 19,
139
139
  "mono": 19,
140
- "alert-warn": 18,
140
+ "alert-info": 18,
141
141
  "icon-follow": 18,
142
142
  "carousel-slide": 18,
143
143
  "carousel": 18,
@@ -156,7 +156,7 @@
156
156
  "qr": 17,
157
157
  "toast-main": 17,
158
158
  "toast-title": 17,
159
- "alert-info": 16,
159
+ "alert-warn": 16,
160
160
  "avatar-sm": 16,
161
161
  "btn-danger": 16,
162
162
  "btn-soft": 16,
@@ -171,6 +171,7 @@
171
171
  "addon": 15,
172
172
  "kanban-card": 15,
173
173
  "kanban": 15,
174
+ "accordion": 14,
174
175
  "avatar-lg": 14,
175
176
  "chat": 14,
176
177
  "badge-bad": 14,
@@ -180,6 +181,7 @@
180
181
  "required": 14,
181
182
  "progress": 14,
182
183
  "spinner": 14,
184
+ "icon-fill": 14,
183
185
  "modal": 14,
184
186
  "pop": 14,
185
187
  "step-note": 14,
@@ -202,13 +204,12 @@
202
204
  "phone": 13,
203
205
  "tabs": 13,
204
206
  "pile": 12,
205
- "accordion": 12,
207
+ "alert-bad": 12,
206
208
  "badge-brand": 12,
207
209
  "carousel-track": 12,
208
210
  "carousel-dots": 12,
209
211
  "editor-content": 12,
210
212
  "g-border": 12,
211
- "icon-fill": 12,
212
213
  "indicator-badge": 12,
213
214
  "kanban-empty": 12,
214
215
  "navbar-links": 12,
@@ -240,7 +241,6 @@
240
241
  "cq-shell": 11,
241
242
  "drag-handle": 11,
242
243
  "cube": 10,
243
- "alert-bad": 10,
244
244
  "avatar-xs": 10,
245
245
  "card-header": 10,
246
246
  "fab": 10,
@@ -1566,6 +1566,7 @@
1566
1566
  "public_html/docs/reference/php.php",
1567
1567
  "public_html/docs/reference/spacing.php",
1568
1568
  "public_html/docs/start/first-page.php",
1569
+ "public_html/docs/start/install.php",
1569
1570
  "public_html/index.php",
1570
1571
  "public_html/php-helper.php"
1571
1572
  ],
@@ -1959,10 +1960,12 @@
1959
1960
  "accordion": [
1960
1961
  "FINDINGS.md",
1961
1962
  "public_html/docs/components/accordion.php",
1963
+ "public_html/docs/start/install.php",
1962
1964
  "public_html/index.php"
1963
1965
  ],
1964
1966
  "accordion-body": [
1965
1967
  "public_html/docs/components/accordion.php",
1968
+ "public_html/docs/start/install.php",
1966
1969
  "public_html/index.php"
1967
1970
  ],
1968
1971
  "stack-6": [
@@ -2054,6 +2057,7 @@
2054
2057
  "alert-bad": [
2055
2058
  "public_html/docs/components/alert.php",
2056
2059
  "public_html/docs/start/first-page.php",
2060
+ "public_html/docs/start/install.php",
2057
2061
  "public_html/index.php"
2058
2062
  ],
2059
2063
  "icon": [
@@ -2114,6 +2118,7 @@
2114
2118
  "public_html/docs/components/alert.php",
2115
2119
  "public_html/docs/guides/dark-mode.php",
2116
2120
  "public_html/docs/index.php",
2121
+ "public_html/docs/start/install.php",
2117
2122
  "public_html/index.php"
2118
2123
  ],
2119
2124
  "alert-good": [
@@ -3083,6 +3088,7 @@
3083
3088
  "public_html/docs/guides/forms.php",
3084
3089
  "public_html/docs/guides/rtl.php",
3085
3090
  "public_html/docs/start/first-page.php",
3091
+ "public_html/docs/start/install.php",
3086
3092
  "public_html/index.php",
3087
3093
  "public_html/php-helper.php",
3088
3094
  "src/js/deck.js"
@@ -3821,6 +3827,7 @@
3821
3827
  "FINDINGS.md",
3822
3828
  "README.md",
3823
3829
  "public_html/docs/components/emoji.php",
3830
+ "public_html/docs/start/install.php",
3824
3831
  "public_html/index.php"
3825
3832
  ],
3826
3833
  "emoji-lg": [
@@ -4241,6 +4248,7 @@
4241
4248
  "README.md",
4242
4249
  "public_html/docs/_layout.php",
4243
4250
  "public_html/docs/components/icon.php",
4251
+ "public_html/docs/start/install.php",
4244
4252
  "public_html/index.php"
4245
4253
  ],
4246
4254
  "icon-muted": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@echodial/deck",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "A mobile-first CSS framework with no build step, no config file, and no dependencies. Retheme an entire app from one number.",
5
5
  "keywords": [
6
6
  "css",