@sp-days-framework/slidev-theme-sykehuspartner 1.0.4 → 1.1.0-beta2

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.
@@ -0,0 +1,50 @@
1
+ ---
2
+ title: Fact
3
+ description: Emphasize key statistics and facts
4
+ sidebar_custom_props:
5
+ section: "Layout and Features"
6
+ section_position: 2
7
+ ---
8
+
9
+ # Fact Layout
10
+
11
+ The `fact` layout is designed to emphasize important statistics, numbers, or key facts. Content is vertically centered for maximum impact.
12
+
13
+ ## When to Use
14
+
15
+ - Highlighting statistics
16
+ - Emphasizing key numbers
17
+ - Important facts or findings
18
+ - Data-driven points
19
+
20
+ ## Parameters
21
+
22
+ | Parameter | Type | Default | Description |
23
+ |-----------|------|---------|-------------|
24
+ | `logo` | boolean | `true` | Show/hide the logo |
25
+
26
+ ## Basic Example
27
+
28
+ ```markdown
29
+ ---
30
+ layout: fact
31
+ ---
32
+
33
+ # 95%
34
+
35
+ ## of Fortune 500 companies use containers
36
+ ```
37
+
38
+ ## With Context
39
+
40
+ ```markdown
41
+ ---
42
+ layout: fact
43
+ ---
44
+
45
+ # 10x Faster
46
+
47
+ ## Deployment speed with Docker
48
+
49
+ Source: DevOps Survey 2024
50
+ ```
@@ -0,0 +1,30 @@
1
+ ---
2
+ title: Quote
3
+ description: Display quotes with attribution
4
+ sidebar_custom_props:
5
+ section: "Layout and Features"
6
+ section_position: 2
7
+ ---
8
+
9
+ # Quote Layout
10
+
11
+ The `quote` layout is designed for displaying quotes with proper attribution.
12
+
13
+ ## Parameters
14
+
15
+ | Parameter | Type | Default | Description |
16
+ |-----------|------|---------|-------------|
17
+ | `logo` | boolean | `false` | Show/hide logo |
18
+
19
+ ## Basic Example
20
+
21
+ ```markdown
22
+ ---
23
+ layout: quote
24
+ ---
25
+
26
+ # "The best way to predict the future is to create it."
27
+
28
+ ## Alan Kay
29
+ ### Computer Scientist
30
+ ```
@@ -0,0 +1,31 @@
1
+ ---
2
+ title: Statement
3
+ description: Bold statement slide for impact
4
+ sidebar_custom_props:
5
+ section: "Layout and Features"
6
+ section_position: 2
7
+ ---
8
+
9
+ # Statement Layout
10
+
11
+ The `statement` layout emphasizes bold statements or key messages with centered text.
12
+
13
+ ## Parameters
14
+
15
+ | Parameter | Type | Default | Description |
16
+ |-----------|------|---------|-------------|
17
+ | `logo` | boolean | `true` | Show/hide logo |
18
+
19
+ ## Basic Example
20
+
21
+ ```markdown
22
+ ---
23
+ layout: statement
24
+ ---
25
+
26
+ # "Infrastructure as Code"
27
+
28
+ ## The Future of Operations
29
+
30
+ Treating infrastructure like software
31
+ ```
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@sp-days-framework/slidev-theme-sykehuspartner",
3
- "version": "1.0.4",
3
+ "version": "1.1.0-beta2",
4
4
  "description": "A Slidev theme for Sykehuspartner presentations.",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/helse-sorost/sp-days-framework",
8
+ "url": "git+https://github.com/helse-sorost/sp-days-framework.git",
9
9
  "directory": "slidev-theme-sykehuspartner"
10
10
  },
11
11
  "keywords": [
@@ -15,6 +15,9 @@
15
15
  "publishConfig": {
16
16
  "access": "public"
17
17
  },
18
+ "exports": {
19
+ "./publish-package-docs": "./publish-package-docs.js"
20
+ },
18
21
  "engines": {
19
22
  "node": ">=18.0.0"
20
23
  },
@@ -46,6 +49,8 @@
46
49
  "setup/",
47
50
  "styles/",
48
51
  "utils/",
52
+ "docs/**/*",
53
+ "publish-package-docs.js",
49
54
  "LICENSE",
50
55
  "README.md",
51
56
  "uno.config.ts"
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Copyright (c) Sykehuspartner HF
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ module.exports = {
9
+ id: 'sykehuspartner-theme-docs',
10
+ path: require('path').join(__dirname, 'docs'),
11
+ routeBasePath: 'package-docs/sykehuspartner-theme',
12
+ };