@warp-ds/elements 2.3.0-next.6 → 2.3.0-next.8
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/dist/custom-elements.json +28 -0
- package/dist/index.d.ts +3 -0
- package/dist/packages/attention/index.js +3 -3
- package/dist/packages/attention/index.js.map +1 -1
- package/dist/packages/button/index.js +3 -3
- package/dist/packages/button/index.js.map +1 -1
- package/dist/packages/dead-toggle/index.js +2 -3
- package/dist/packages/dead-toggle/index.js.map +2 -2
- package/dist/packages/link/index.js +3 -3
- package/dist/packages/link/index.js.map +1 -1
- package/dist/packages/link/styles.js +3 -3
- package/dist/packages/rip-and-tear-checkbox/checkbox-group.d.ts +10 -0
- package/dist/packages/rip-and-tear-checkbox/checkbox-group.js +7 -0
- package/dist/packages/rip-and-tear-checkbox/checkbox-group.js.map +7 -0
- package/dist/packages/rip-and-tear-checkbox/checkbox.js +2 -3
- package/dist/packages/rip-and-tear-checkbox/checkbox.js.map +2 -2
- package/dist/packages/rip-and-tear-checkbox/checkbox.stories.d.ts +3 -0
- package/dist/packages/rip-and-tear-checkbox/checkbox.stories.js +14 -0
- package/dist/packages/rip-and-tear-checkbox/index.js +2 -0
- package/dist/packages/rip-and-tear-checkbox/react.d.ts +2 -0
- package/dist/packages/rip-and-tear-checkbox/react.js +5 -0
- package/dist/packages/rip-and-tear-radio/radio-group.js +2 -3
- package/dist/packages/rip-and-tear-radio/radio-group.js.map +2 -2
- package/dist/packages/rip-and-tear-radio/radio.js +2 -3
- package/dist/packages/rip-and-tear-radio/radio.js.map +2 -2
- package/dist/packages/rip-and-tear-radio/radio.stories.js +2 -3
- package/dist/packages/rip-and-tear-radio/radio.stories.js.map +2 -2
- package/dist/packages/toggle-styles.js +2 -3
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -5360,6 +5360,34 @@
|
|
|
5360
5360
|
}
|
|
5361
5361
|
]
|
|
5362
5362
|
},
|
|
5363
|
+
{
|
|
5364
|
+
"kind": "javascript-module",
|
|
5365
|
+
"path": "packages/rip-and-tear-checkbox/checkbox-group.ts",
|
|
5366
|
+
"declarations": [
|
|
5367
|
+
{
|
|
5368
|
+
"kind": "class",
|
|
5369
|
+
"description": "",
|
|
5370
|
+
"name": "WCheckboxGroup",
|
|
5371
|
+
"members": [],
|
|
5372
|
+
"superclass": {
|
|
5373
|
+
"name": "LitElement",
|
|
5374
|
+
"package": "lit"
|
|
5375
|
+
},
|
|
5376
|
+
"customElement": true,
|
|
5377
|
+
"modulePath": "packages/rip-and-tear-checkbox/checkbox-group.ts"
|
|
5378
|
+
}
|
|
5379
|
+
],
|
|
5380
|
+
"exports": [
|
|
5381
|
+
{
|
|
5382
|
+
"kind": "js",
|
|
5383
|
+
"name": "WCheckboxGroup",
|
|
5384
|
+
"declaration": {
|
|
5385
|
+
"name": "WCheckboxGroup",
|
|
5386
|
+
"module": "packages/rip-and-tear-checkbox/checkbox-group.ts"
|
|
5387
|
+
}
|
|
5388
|
+
}
|
|
5389
|
+
]
|
|
5390
|
+
},
|
|
5363
5391
|
{
|
|
5364
5392
|
"kind": "javascript-module",
|
|
5365
5393
|
"path": "packages/slider/slider-thumb.ts",
|
package/dist/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import type { WarpDatepicker } from "./packages/datepicker/datepicker.ts";
|
|
|
21
21
|
import type { WarpDeadToggle } from "./packages/dead-toggle/index.ts";
|
|
22
22
|
import type { WarpPageIndicator } from "./packages/pageindicator/index.ts";
|
|
23
23
|
import type { WarpPagination } from "./packages/pagination/index.ts";
|
|
24
|
+
import type { WCheckboxGroup } from "./packages/rip-and-tear-checkbox/checkbox-group.ts";
|
|
24
25
|
import type { WarpSliderThumb } from "./packages/slider/slider-thumb.ts";
|
|
25
26
|
import type { WarpSlider } from "./packages/slider/slider.ts";
|
|
26
27
|
import type { WarpSteps, WarpStep } from "./packages/steps/index.ts";
|
|
@@ -686,6 +687,7 @@ export type WarpPaginationProps = {
|
|
|
686
687
|
}
|
|
687
688
|
|
|
688
689
|
|
|
690
|
+
|
|
689
691
|
export type WarpSliderThumbProps = {
|
|
690
692
|
/** */
|
|
691
693
|
"aria-label"?: WarpSliderThumb['ariaLabel'];
|
|
@@ -1434,6 +1436,7 @@ export type WarpTextareaProps = {
|
|
|
1434
1436
|
"w-pagination": Partial<WarpPaginationProps & BaseProps<WarpPagination> & BaseEvents>;
|
|
1435
1437
|
|
|
1436
1438
|
|
|
1439
|
+
|
|
1437
1440
|
/**
|
|
1438
1441
|
* Component to place inside a `<w-slider>`.
|
|
1439
1442
|
*
|
|
@@ -3405,9 +3405,9 @@ Please compile your catalog first.
|
|
|
3405
3405
|
|
|
3406
3406
|
/* Variants config */
|
|
3407
3407
|
.w-button--primary {
|
|
3408
|
-
--background: var(--w-
|
|
3409
|
-
--background-hover: var(--w-
|
|
3410
|
-
--background-active: var(--w-
|
|
3408
|
+
--background: var(--w-color-button-primary-background);
|
|
3409
|
+
--background-hover: var(--w-color-button-primary-background-hover);
|
|
3410
|
+
--background-active: var(--w-color-button-primary-background-active);
|
|
3411
3411
|
--color: var(--w-s-color-text-inverted);
|
|
3412
3412
|
--border-width: 0px;
|
|
3413
3413
|
}
|