@descope/web-components-ui 1.0.258 → 1.0.260
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 +23 -0
- package/dist/cjs/index.cjs.js +272 -250
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +243 -220
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/1000.js +1 -1
- package/dist/umd/descope-button-index-js.js +1 -1
- package/dist/umd/descope-notp-image-index-js.js +1 -0
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-button/ButtonClass.js +1 -2
- package/src/components/descope-notp-image/NotpImageClass.js +10 -0
- package/src/components/descope-notp-image/index.js +5 -0
- package/src/index.cjs.js +1 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/mixins/createStyleMixin/helpers.js +10 -9
- package/src/theme/components/index.js +2 -0
- package/src/theme/components/notpImage.js +10 -0
package/README.md
CHANGED
@@ -1 +1,24 @@
|
|
1
1
|
# web-components-ui
|
2
|
+
|
3
|
+
Descope Web Components UI Library
|
4
|
+
|
5
|
+
## Run locally
|
6
|
+
|
7
|
+
```bash
|
8
|
+
npm install
|
9
|
+
npm start
|
10
|
+
```
|
11
|
+
|
12
|
+
## Storybook
|
13
|
+
|
14
|
+
```bash
|
15
|
+
npm run storybook
|
16
|
+
```
|
17
|
+
|
18
|
+
## Update snapshot
|
19
|
+
To update snapshot for a component, run the following command:
|
20
|
+
|
21
|
+
```bash
|
22
|
+
# e.g. npm run test:ci:updateSnapshots -- descope-notp-image
|
23
|
+
npm run test:ci:updateSnapshots -- <component-folder-name>
|
24
|
+
```
|