@mhmo91/schmancy 0.4.71 → 0.4.72

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/ai/context.md CHANGED
@@ -28,7 +28,7 @@ A context is a reactive container that:
28
28
  ### Basic Syntax
29
29
 
30
30
  ```typescript
31
- import { createContext } from '@mhmo91/schmancy/context'
31
+ import { createContext } from '@mhmo91/schmancy'
32
32
 
33
33
  export const contextName = createContext<Type>(
34
34
  initialValue, // Default value
@@ -131,8 +131,7 @@ user: AuthUser | null | undefined
131
131
  ### Basic Component Integration
132
132
 
133
133
  ```typescript
134
- import { $LitElement } from '@mhmo91/schmancy/core/$lit'
135
- import { select } from '@mhmo91/schmancy/context'
134
+ import { $LitElement, select } from '@mhmo91/schmancy'
136
135
  import { userContext, productsContext } from './contexts'
137
136
 
138
137
  @customElement('my-component')
package/ai/directives.md CHANGED
@@ -3,7 +3,7 @@
3
3
  ## Quick Start
4
4
 
5
5
  ```typescript
6
- import { ripple, color, height, visibility } from '@mhmo91/schmancy/directives'
6
+ import { ripple, color, height, visibility } from '@mhmo91/schmancy'
7
7
  ```
8
8
 
9
9
  ## Directives Overview
@@ -28,7 +28,7 @@ A context is a reactive container that:
28
28
  ### Basic Syntax
29
29
 
30
30
  ```typescript
31
- import { createContext } from '@mhmo91/schmancy/context'
31
+ import { createContext } from '@mhmo91/schmancy'
32
32
 
33
33
  export const contextName = createContext<Type>(
34
34
  initialValue, // Default value
@@ -131,8 +131,7 @@ user: AuthUser | null | undefined
131
131
  ### Basic Component Integration
132
132
 
133
133
  ```typescript
134
- import { $LitElement } from '@mhmo91/schmancy/core/$lit'
135
- import { select } from '@mhmo91/schmancy/context'
134
+ import { $LitElement, select } from '@mhmo91/schmancy'
136
135
  import { userContext, productsContext } from './contexts'
137
136
 
138
137
  @customElement('my-component')
@@ -3,7 +3,7 @@
3
3
  ## Quick Start
4
4
 
5
5
  ```typescript
6
- import { ripple, color, height, visibility } from '@mhmo91/schmancy/directives'
6
+ import { ripple, color, height, visibility } from '@mhmo91/schmancy'
7
7
  ```
8
8
 
9
9
  ## Directives Overview
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mhmo91/schmancy",
3
- "version": "0.4.71",
3
+ "version": "0.4.72",
4
4
  "description": "UI library build with web components",
5
5
  "main": "./dist/index.js",
6
6
  "packageManager": "yarn@4.9.2",