@nyaruka/temba-components 0.27.2 → 0.28.0

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,6 +1,6 @@
1
1
  ```js script
2
2
  import { html } from '@open-wc/demoing-storybook';
3
- import '../dist/temba-checkbox.js';
3
+ import '../dist/index.js';
4
4
 
5
5
  export default {
6
6
  title: 'forms/temba-checkbox',
@@ -21,19 +21,9 @@ A component for...
21
21
 
22
22
  ## How to use
23
23
 
24
- ### Installation
25
-
26
- ```bash
27
- yarn add temba-checkbox
28
- ```
29
-
30
- ```js
31
- import 'temba-checkbox/temba-checkbox.js';
32
- ```
33
-
34
24
  ```js preview-story
35
25
  export const Default = () =>
36
- html` <temba-checkbox label="Click me for good luck"></temba-checkbox> `;
26
+ html`<temba-checkbox label="Click me for good luck"></temba-checkbox> `;
37
27
  ```
38
28
 
39
29
  ## Variations
@@ -0,0 +1,11 @@
1
+ // import { html, fixture, expect } from '@open-wc/testing';
2
+ // import { TembaSlider } from '../src/slider/TembaSlider';
3
+ // import { assertScreenshot, getClip } from './utils.test';
4
+
5
+ describe('temba-slider', () => {
6
+ // it('renders default slider', async () => {});
7
+ // it('renders a slider with visible ranges', async () => {});
8
+ // it('updates slider position on element value change', async () => {});
9
+ // it('updates slider position on when track clicked', async () => {});
10
+ // it('updates slider position on circle drag', async () => {});
11
+ });