ds-one 0.2.5-alpha.1 → 0.2.5-alpha.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.
@@ -1,4 +1,4 @@
1
- /* version 0.2.0-alpha.3 */
1
+ /* version 0.2.5-alpha.3 */
2
2
 
3
3
  input {
4
4
  padding: 0;
@@ -34,6 +34,11 @@ input {
34
34
  --ds1-docs-search-bg: light-dark(#f0f0f0, #171717);
35
35
  --ds1-docs-divider: light-dark(#e0e0e0, #000000);
36
36
 
37
+ /* grid colors */
38
+ --grid-color: light-dark(var(--slate), var(--slate-dark));
39
+
40
+
41
+
37
42
  /* typefaces */
38
43
  --typeface: "GT-America-Standard-Regular";
39
44
  --typeface-medium: "GT-America-Standard-Medium";
@@ -132,13 +137,6 @@ input {
132
137
  navigation: auto;
133
138
  }
134
139
 
135
- ::-webkit-scrollbar {
136
- display: none;
137
- }
138
-
139
- html {
140
- scrollbar-width: none;
141
- }
142
140
 
143
141
  @font-face {
144
142
  font-family: GT-America-Standard-Regular;
@@ -445,20 +443,4 @@ td {
445
443
  text-align: left;
446
444
  }
447
445
 
448
- .layout-grid {
449
- margin-top: 0.5px;
450
- margin-left: -0px;
451
- display: grid;
452
- z-index: -10;
453
- grid-template-columns: repeat(19, 79px);
454
- grid-template-rows: repeat(500, 19px);
455
- gap: 1px;
456
- row-rule: 1px solid #00000012;
457
- column-rule: 1px solid #00000012;
458
- outline: 1px solid #100101e7;
459
- position: absolute;
460
- top: 0;
461
- left: 50%;
462
- transform: translateX(-50%);
463
- pointer-events: none;
464
- }
446
+
@@ -0,0 +1,3 @@
1
+ // ds-banner.ts
2
+ // Core component
3
+
@@ -1,3 +1,10 @@
1
+ // ds-banner.ts
2
+ // Unit component that
3
+ // can be used to show a list of items consiting of compoentnts from core
4
+
5
+
6
+
7
+
1
8
  import { LitElement, html, css } from "lit";
2
9
 
3
10
  export class List extends LitElement {
package/README.md CHANGED
@@ -26,7 +26,7 @@ npm install ds-one@alpha
26
26
  yarn add ds-one@alpha
27
27
  ```
28
28
 
29
- **Note**: Currently published as alpha version `0.2.0-alpha.3`. Use `@alpha` tag to install.
29
+ **Note**: Currently published as alpha version `0.2.5-alpha.3`. Use `@alpha` tag to install.
30
30
 
31
31
  ### Basic Usage (CDN)
32
32
 
@@ -86,7 +86,7 @@ Try DS one in your browser: **[dsone.dev](https://dsone.dev)** (documentation sl
86
86
  - **[Internationalization](./docs/i18n.md)** - Language keys and Notion CMS setup
87
87
  - **[Examples](./docs/examples.md)** - Usage examples and patterns
88
88
 
89
- ## Current Status: v0.2.0-alpha.3
89
+ ## Current Status: v0.2.5-alpha.3
90
90
 
91
91
  **⚠️ Alpha Release**: This is an early alpha version. The API may change as we refine the components and architecture.
92
92
 
@@ -183,7 +183,7 @@ bun run build
183
183
 
184
184
  ```bash
185
185
  # Create a new alpha release (recommended for now)
186
- bun run release:pre:alpha # Bumps alpha version (e.g., 0.2.0-alpha.3 → 0.2.0-alpha.3)
186
+ bun run release:pre:alpha # Bumps alpha version (e.g., 0.2.5-alpha.3 → 0.2.5-alpha.3)
187
187
 
188
188
  # Other release commands (for future use)
189
189
  bun run release:patch # For patch releases
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=ds-banner.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ds-banner.d.ts","sourceRoot":"","sources":["../../DS1/2-core/ds-banner.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ // ds-banner.ts
2
+ // Core component
@@ -1 +1 @@
1
- {"version":3,"file":"ds-list.d.ts","sourceRoot":"","sources":["../../DS1/3-unit/ds-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAa,MAAM,KAAK,CAAC;AAE5C,qBAAa,IAAK,SAAQ,UAAU;IAClC,MAAM,CAAC,MAAM,0BAOX;IAEF,MAAM;CAGP;AAID,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,IAAI,CAAC;KACjB;CACF"}
1
+ {"version":3,"file":"ds-list.d.ts","sourceRoot":"","sources":["../../DS1/3-unit/ds-list.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAa,MAAM,KAAK,CAAC;AAE5C,qBAAa,IAAK,SAAQ,UAAU;IAClC,MAAM,CAAC,MAAM,0BAOX;IAEF,MAAM;CAGP;AAID,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,IAAI,CAAC;KACjB;CACF"}
@@ -1,3 +1,6 @@
1
+ // ds-banner.ts
2
+ // Unit component that
3
+ // can be used to show a list of items consiting of compoentnts from core
1
4
  import { LitElement, html, css } from "lit";
2
5
  export class List extends LitElement {
3
6
  render() {
@@ -1 +1 @@
1
- {"version":3,"file":"ds-portfolio-panel.d.ts","sourceRoot":"","sources":["../../DS1/3-unit/ds-portfolio-panel.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAa,MAAM,KAAK,CAAC;AAE5C,qBAAa,cAAe,SAAQ,UAAU;IAC5C,MAAM,CAAC,MAAM,0BAQX;IAEF,MAAM;CAGP;AAID,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,iBAAiB,EAAE,cAAc,CAAC;KACnC;CACF"}
1
+ {"version":3,"file":"ds-portfolio-panel.d.ts","sourceRoot":"","sources":["../../DS1/3-unit/ds-portfolio-panel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAa,MAAM,KAAK,CAAC;AAE5C,qBAAa,cAAe,SAAQ,UAAU;IAC5C,MAAM,CAAC,MAAM,0BAQX;IAEF,MAAM;CAGP;AAID,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,iBAAiB,EAAE,cAAc,CAAC;KACnC;CACF"}