@spectrum-web-components/swatch 1.12.0-testing.20260223092154 → 1.12.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.
- package/package.json +7 -7
- package/src/Swatch.d.ts +1 -4
- package/src/SwatchGroup.d.ts +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/swatch",
|
|
3
|
-
"version": "1.12.0
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "Web component implementation of a Spectrum design Swatch",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Adobe",
|
|
@@ -65,12 +65,12 @@
|
|
|
65
65
|
"types": "./src/index.d.ts",
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@lit-labs/observers": "2.0.2",
|
|
68
|
-
"@spectrum-web-components/base": "1.12.0
|
|
69
|
-
"@spectrum-web-components/icon": "1.12.0
|
|
70
|
-
"@spectrum-web-components/icons-ui": "1.12.0
|
|
71
|
-
"@spectrum-web-components/opacity-checkerboard": "1.12.0
|
|
72
|
-
"@spectrum-web-components/reactive-controllers": "1.12.0
|
|
73
|
-
"@spectrum-web-components/shared": "1.12.0
|
|
68
|
+
"@spectrum-web-components/base": "1.12.0",
|
|
69
|
+
"@spectrum-web-components/icon": "1.12.0",
|
|
70
|
+
"@spectrum-web-components/icons-ui": "1.12.0",
|
|
71
|
+
"@spectrum-web-components/opacity-checkerboard": "1.12.0",
|
|
72
|
+
"@spectrum-web-components/reactive-controllers": "1.12.0",
|
|
73
|
+
"@spectrum-web-components/shared": "1.12.0"
|
|
74
74
|
},
|
|
75
75
|
"keywords": [
|
|
76
76
|
"design-system",
|
package/src/Swatch.d.ts
CHANGED
|
@@ -18,10 +18,7 @@ import '@spectrum-web-components/icons-ui/icons/sp-icon-dash300.js';
|
|
|
18
18
|
export type SwatchBorder = 'light' | 'none' | undefined;
|
|
19
19
|
export type SwatchRounding = 'none' | 'full' | undefined;
|
|
20
20
|
export type SwatchShape = 'rectangle' | undefined;
|
|
21
|
-
declare const Swatch_base: typeof Focusable &
|
|
22
|
-
new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface;
|
|
23
|
-
prototype: import("@spectrum-web-components/base").SizedElementInterface;
|
|
24
|
-
} & import("@spectrum-web-components/core/mixins/sized-mixin.js").SizedElementConstructor;
|
|
21
|
+
declare const Swatch_base: typeof Focusable & import("@spectrum-web-components/base").Constructor<import("@spectrum-web-components/base").SizedElementInterface> & import("@spectrum-web-components/base").SizedElementConstructor;
|
|
25
22
|
/**
|
|
26
23
|
* @element sp-swatch
|
|
27
24
|
*/
|
package/src/SwatchGroup.d.ts
CHANGED
|
@@ -14,10 +14,7 @@ import { RovingTabindexController } from '@spectrum-web-components/reactive-cont
|
|
|
14
14
|
import type { Swatch, SwatchBorder, SwatchRounding, SwatchShape } from './Swatch.js';
|
|
15
15
|
export type SwatchGroupSizes = Exclude<ElementSize, 'xxs' | 'xl' | 'xxl'>;
|
|
16
16
|
export type SwatchSelects = 'single' | 'multiple' | undefined;
|
|
17
|
-
declare const SwatchGroup_base: typeof SpectrumElement &
|
|
18
|
-
new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface;
|
|
19
|
-
prototype: import("@spectrum-web-components/base").SizedElementInterface;
|
|
20
|
-
} & import("@spectrum-web-components/core/mixins/sized-mixin.js").SizedElementConstructor;
|
|
17
|
+
declare const SwatchGroup_base: typeof SpectrumElement & import("@spectrum-web-components/base").Constructor<import("@spectrum-web-components/base").SizedElementInterface> & import("@spectrum-web-components/base").SizedElementConstructor;
|
|
21
18
|
/**
|
|
22
19
|
* @element sp-swatch-group
|
|
23
20
|
*
|