@fluentui/web-components 3.0.0-beta.53 → 3.0.0-beta.55

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.
Files changed (44) hide show
  1. package/CHANGELOG.md +20 -2
  2. package/dist/dts/index-rollup.d.ts +1 -0
  3. package/dist/dts/index.d.ts +2 -1
  4. package/dist/dts/rating-display/index.d.ts +1 -1
  5. package/dist/dts/rating-display/rating-display.d.ts +65 -33
  6. package/dist/dts/tablist/define.d.ts +1 -0
  7. package/dist/dts/tablist/index.d.ts +5 -0
  8. package/dist/dts/tablist/tablist.bench.d.ts +3 -0
  9. package/dist/dts/tablist/tablist.d.ts +191 -0
  10. package/dist/dts/tablist/tablist.definition.d.ts +7 -0
  11. package/dist/dts/tablist/tablist.options.d.ts +44 -0
  12. package/dist/dts/tablist/tablist.styles.d.ts +4 -0
  13. package/dist/dts/tablist/tablist.template.d.ts +5 -0
  14. package/dist/dts/utils/focusable-element.d.ts +3 -0
  15. package/dist/esm/index-rollup.js +1 -0
  16. package/dist/esm/index-rollup.js.map +1 -1
  17. package/dist/esm/index.js +2 -1
  18. package/dist/esm/index.js.map +1 -1
  19. package/dist/esm/rating-display/index.js +1 -1
  20. package/dist/esm/rating-display/index.js.map +1 -1
  21. package/dist/esm/rating-display/rating-display.js +91 -46
  22. package/dist/esm/rating-display/rating-display.js.map +1 -1
  23. package/dist/esm/tablist/define.js +4 -0
  24. package/dist/esm/tablist/define.js.map +1 -0
  25. package/dist/esm/tablist/index.js +6 -0
  26. package/dist/esm/tablist/index.js.map +1 -0
  27. package/dist/esm/tablist/tablist.bench.js +21 -0
  28. package/dist/esm/tablist/tablist.bench.js.map +1 -0
  29. package/dist/esm/tablist/tablist.definition.js +15 -0
  30. package/dist/esm/tablist/tablist.definition.js.map +1 -0
  31. package/dist/esm/tablist/tablist.js +407 -0
  32. package/dist/esm/tablist/tablist.js.map +1 -0
  33. package/dist/esm/tablist/tablist.options.js +24 -0
  34. package/dist/esm/tablist/tablist.options.js.map +1 -0
  35. package/dist/esm/tablist/tablist.styles.js +194 -0
  36. package/dist/esm/tablist/tablist.styles.js.map +1 -0
  37. package/dist/esm/tablist/tablist.template.js +10 -0
  38. package/dist/esm/tablist/tablist.template.js.map +1 -0
  39. package/dist/esm/utils/focusable-element.js +10 -0
  40. package/dist/esm/utils/focusable-element.js.map +1 -0
  41. package/dist/web-components.d.ts +335 -45
  42. package/dist/web-components.js +987 -542
  43. package/dist/web-components.min.js +290 -287
  44. package/package.json +7 -5
package/CHANGELOG.md CHANGED
@@ -1,12 +1,30 @@
1
1
  # Change Log - @fluentui/web-components
2
2
 
3
- This log was last generated on Mon, 05 Aug 2024 04:08:29 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 08 Aug 2024 04:07:05 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [3.0.0-beta.55](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-beta.55)
8
+
9
+ Thu, 08 Aug 2024 04:07:05 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-beta.54..@fluentui/web-components_v3.0.0-beta.55)
11
+
12
+ ### Changes
13
+
14
+ - [chore]: [rating-display] move size, color and generate icons out of base class ([PR #32239](https://github.com/microsoft/fluentui/pull/32239) by jes@microsoft.com)
15
+
16
+ ## [3.0.0-beta.54](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-beta.54)
17
+
18
+ Tue, 06 Aug 2024 04:07:08 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-beta.53..@fluentui/web-components_v3.0.0-beta.54)
20
+
21
+ ### Changes
22
+
23
+ - Add Tablist component ([PR #32098](https://github.com/microsoft/fluentui/pull/32098) by rupertdavid@microsoft.com)
24
+
7
25
  ## [3.0.0-beta.53](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v3.0.0-beta.53)
8
26
 
9
- Mon, 05 Aug 2024 04:08:29 GMT
27
+ Mon, 05 Aug 2024 04:08:39 GMT
10
28
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v3.0.0-beta.52..@fluentui/web-components_v3.0.0-beta.53)
11
29
 
12
30
  ### Changes
@@ -31,6 +31,7 @@ import './switch/define.js';
31
31
  import './tab-panel/define.js';
32
32
  import './tab/define.js';
33
33
  import './tabs/define.js';
34
+ import './tablist/define.js';
34
35
  import './text-input/define.js';
35
36
  import './text/define.js';
36
37
  import './toggle-button/define.js';
@@ -33,7 +33,7 @@ export { BaseProgressBar, ProgressBar, ProgressBarDefinition, ProgressBarShape,
33
33
  export { RadioGroup, RadioGroupDefinition, RadioGroupOrientation, RadioGroupStyles, RadioGroupTemplate, } from './radio-group/index.js';
34
34
  export { Radio, RadioDefinition, RadioStyles, RadioTemplate } from './radio/index.js';
35
35
  export type { RadioControl, RadioOptions } from './radio/index.js';
36
- export { RatingDisplay, RatingDisplayColor, RatingDisplayDefinition, RatingDisplaySize, RatingDisplayStyles, RatingDisplayTemplate, } from './rating-display/index.js';
36
+ export { BaseRatingDisplay, RatingDisplay, RatingDisplayColor, RatingDisplayDefinition, RatingDisplaySize, RatingDisplayStyles, RatingDisplayTemplate, } from './rating-display/index.js';
37
37
  export { Slider, SliderDefinition, SliderMode, SliderOrientation, SliderSize, SliderStyles, SliderTemplate, } from './slider/index.js';
38
38
  export type { SliderConfiguration, SliderOptions } from './slider/index.js';
39
39
  export { BaseSpinner, Spinner, SpinnerAppearance, SpinnerDefinition, SpinnerSize, SpinnerStyles, SpinnerTemplate, } from './spinner/index.js';
@@ -44,6 +44,7 @@ export { TabPanel, TabPanelDefinition, TabPanelStyles, TabPanelTemplate } from '
44
44
  export { Tab, TabDefinition, TabStyles, TabTemplate } from './tab/index.js';
45
45
  export type { TabOptions } from './tab/index.js';
46
46
  export { Tabs, TabsAppearance, TabsDefinition, TabsOrientation, TabsSize, TabsStyles, TabsTemplate, } from './tabs/index.js';
47
+ export { BaseTablist, Tablist, TablistAppearance, TablistDefinition, TablistOrientation, TablistSize, TablistStyles, TablistTemplate, } from './tablist/index.js';
47
48
  export type { TabsOptions } from './tabs/index.js';
48
49
  export { BaseTextInput, TextInput, TextInputAppearance, TextInputControlSize, TextInputDefinition, TextInputStyles, TextInputTemplate, TextInputType, } from './text-input/index.js';
49
50
  export type { TextInputOptions } from './text-input/index.js';
@@ -1,4 +1,4 @@
1
- export { RatingDisplay } from './rating-display.js';
1
+ export { BaseRatingDisplay, RatingDisplay } from './rating-display.js';
2
2
  export { RatingDisplayColor, RatingDisplaySize } from './rating-display.options.js';
3
3
  export { template as RatingDisplayTemplate } from './rating-display.template.js';
4
4
  export { styles as RatingDisplayStyles } from './rating-display.styles.js';
@@ -4,7 +4,7 @@ import { RatingDisplayColor, RatingDisplaySize } from './rating-display.options.
4
4
  * The base class used for constructing a fluent-rating-display custom element
5
5
  * @public
6
6
  */
7
- export declare class RatingDisplay extends FASTElement {
7
+ export declare class BaseRatingDisplay extends FASTElement {
8
8
  /**
9
9
  * The internal {@link https://developer.mozilla.org/docs/Web/API/ElementInternals | `ElementInternals`} instance for the component.
10
10
  *
@@ -12,47 +12,81 @@ export declare class RatingDisplay extends FASTElement {
12
12
  */
13
13
  elementInternals: ElementInternals;
14
14
  /**
15
- * The color of the rating display icons.
15
+ * The number of ratings.
16
16
  *
17
17
  * @public
18
- * @default `marigold`
19
18
  * @remarks
20
- * HTML Attribute: `color`
19
+ * HTML Attribute: `count`
21
20
  */
22
- color?: RatingDisplayColor;
21
+ count?: number;
23
22
  /**
24
- * Handles changes to the color attribute.
23
+ * The maximum possible value of the rating.
24
+ * This attribute determines the number of icons displayed.
25
+ * Must be a whole number greater than 1.
25
26
  *
26
- * @param prev - The previous state
27
- * @param next - The next state
27
+ * @public
28
+ * @remarks
29
+ * HTML Attribute: `max`
28
30
  */
29
- colorChanged(prev: RatingDisplayColor | undefined, next: RatingDisplayColor | undefined): void;
31
+ max?: number;
30
32
  /**
31
- * Renders a single filled icon with a label next to it.
33
+ * The value of the rating.
32
34
  *
33
35
  * @public
34
36
  * @remarks
35
- * HTML Attribute: `compact`
37
+ * HTML Attribute: `value`
36
38
  */
37
- compact: boolean;
39
+ value?: number;
40
+ private intlNumberFormatter;
41
+ constructor();
38
42
  /**
39
- * The number of ratings.
43
+ * Returns "count" as string, formatted according to the locale.
40
44
  *
41
- * @public
42
- * @remarks
43
- * HTML Attribute: `count`
45
+ * @internal
44
46
  */
45
- count?: number;
47
+ get formattedCount(): string;
46
48
  /**
47
- * The maximum possible value of the rating.
48
- * This attribute determines the number of icons displayed.
49
- * Must be a whole number greater than 1.
49
+ * Gets the selected value
50
+ *
51
+ * @protected
52
+ */
53
+ protected getSelectedValue(): number;
54
+ /**
55
+ * Gets the maximum icons to render
56
+ *
57
+ * @protected
58
+ */
59
+ protected getMaxIcons(): number;
60
+ /**
61
+ * Generates the icon SVG elements based on the "max" attribute.
62
+ *
63
+ * @internal
64
+ */
65
+ generateIcons(): string;
66
+ }
67
+ /**
68
+ * A Rating Dislpay Custom HTML Element.
69
+ * Based on BaseRatingDisplay and includes style and layout specific attributes
70
+ *
71
+ * @public
72
+ */
73
+ export declare class RatingDisplay extends BaseRatingDisplay {
74
+ /**
75
+ * The color of the rating display icons.
50
76
  *
51
77
  * @public
78
+ * @default `marigold`
52
79
  * @remarks
53
- * HTML Attribute: `max`
80
+ * HTML Attribute: `color`
54
81
  */
55
- max?: number;
82
+ color?: RatingDisplayColor;
83
+ /**
84
+ * Handles changes to the color attribute.
85
+ *
86
+ * @param prev - The previous state
87
+ * @param next - The next state
88
+ */
89
+ colorChanged(prev: RatingDisplayColor | undefined, next: RatingDisplayColor | undefined): void;
56
90
  /**
57
91
  * The size of the component.
58
92
  *
@@ -70,25 +104,23 @@ export declare class RatingDisplay extends FASTElement {
70
104
  */
71
105
  sizeChanged(prev: RatingDisplaySize | undefined, next: RatingDisplaySize | undefined): void;
72
106
  /**
73
- * The value of the rating.
107
+ * Renders a single filled icon with a label next to it.
74
108
  *
75
109
  * @public
76
110
  * @remarks
77
- * HTML Attribute: `value`
111
+ * HTML Attribute: `compact`
78
112
  */
79
- value?: number;
80
- private intlNumberFormatter;
81
- constructor();
113
+ compact: boolean;
82
114
  /**
83
- * Returns "count" as string, formatted according to the locale.
115
+ * Overrides the selected value and returns 1 if compact is true.
84
116
  *
85
- * @internal
117
+ * @override
86
118
  */
87
- get formattedCount(): string;
119
+ protected getSelectedValue(): number;
88
120
  /**
89
- * Generates the icon SVG elements based on the "max" attribute.
121
+ * Overrides the maximum icons and returns a max of 1 if compact is true.
90
122
  *
91
- * @internal
123
+ * @override
92
124
  */
93
- generateIcons(): string;
125
+ protected getMaxIcons(): number;
94
126
  }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ export { definition as TablistDefinition } from './tablist.definition.js';
2
+ export { BaseTablist, Tablist } from './tablist.js';
3
+ export { TablistAppearance, TablistOrientation, TablistSize } from './tablist.options.js';
4
+ export { styles as TablistStyles } from './tablist.styles.js';
5
+ export { template as TablistTemplate } from './tablist.template.js';
@@ -0,0 +1,3 @@
1
+ declare const itemRenderer: () => HTMLElement;
2
+ export default itemRenderer;
3
+ export { tests } from '../utils/benchmark-wrapper.js';
@@ -0,0 +1,191 @@
1
+ import { FASTElement } from '@microsoft/fast-element';
2
+ import { TablistAppearance, TablistOrientation, TablistSize } from './tablist.options.js';
3
+ /**
4
+ * A Tablist element that wraps a collection of tab elements
5
+ * @public
6
+ */
7
+ export declare class BaseTablist extends FASTElement {
8
+ /**
9
+ * The internal {@link https://developer.mozilla.org/docs/Web/API/ElementInternals | `ElementInternals`} instance for the component.
10
+ *
11
+ * @internal
12
+ */
13
+ elementInternals: ElementInternals;
14
+ /**
15
+ * Used for disabling all click and keyboard events for the tabs, child tab elements.
16
+ * @public
17
+ * @remarks
18
+ * HTML Attribute: disabled.
19
+ */
20
+ disabled: boolean;
21
+ /**
22
+ * Handles disabled changes
23
+ * @param prev - previous value
24
+ * @param next - next value
25
+ *
26
+ * @internal
27
+ */
28
+ protected disabledChanged(prev: boolean, next: boolean): void;
29
+ /**
30
+ * The orientation
31
+ * @public
32
+ * @remarks
33
+ * HTML Attribute: orientation
34
+ */
35
+ orientation: TablistOrientation;
36
+ /**
37
+ * @internal
38
+ */
39
+ protected orientationChanged(prev: TablistOrientation, next: TablistOrientation): void;
40
+ /**
41
+ * The id of the active tab
42
+ *
43
+ * @public
44
+ * @remarks
45
+ * HTML Attribute: activeid
46
+ */
47
+ activeid: string;
48
+ /**
49
+ * @internal
50
+ */
51
+ protected activeidChanged(oldValue: string, newValue: string): void;
52
+ /**
53
+ * @internal
54
+ */
55
+ tabs: HTMLElement[];
56
+ /**
57
+ * @internal
58
+ */
59
+ protected tabsChanged(): void;
60
+ /**
61
+ * A reference to the active tab
62
+ * @public
63
+ */
64
+ activetab: HTMLElement;
65
+ private prevActiveTabIndex;
66
+ private activeTabIndex;
67
+ private tabIds;
68
+ private change;
69
+ private getActiveIndex;
70
+ /**
71
+ * Function that is invoked whenever the selected tab or the tab collection changes.
72
+ *
73
+ * @public
74
+ */
75
+ protected setTabs(): void;
76
+ private getTabIds;
77
+ private setComponent;
78
+ private handleTabClick;
79
+ private isHorizontal;
80
+ private handleTabKeyDown;
81
+ /**
82
+ * The adjust method for FASTTabs
83
+ * @public
84
+ * @remarks
85
+ * This method allows the active index to be adjusted by numerical increments
86
+ */
87
+ adjust(adjustment: number): void;
88
+ private activateTabByIndex;
89
+ private focusTab;
90
+ /**
91
+ * @internal
92
+ */
93
+ connectedCallback(): void;
94
+ }
95
+ /**
96
+ * A BaseTablist component with extra logic for handling the styled active tab indicator.
97
+ * @public
98
+ */
99
+ export declare class Tablist extends BaseTablist {
100
+ /**
101
+ * activeTabData
102
+ * The positional coordinates and size dimensions of the active tab. Used for calculating the offset and scale of the tab active indicator.
103
+ */
104
+ private activeTabData;
105
+ /**
106
+ * previousActiveTabData
107
+ * The positional coordinates and size dimensions of the active tab. Used for calculating the offset and scale of the tab active indicator.
108
+ */
109
+ private previousActiveTabData;
110
+ /**
111
+ * activeTabOffset
112
+ * Used to position the active indicator for animations of the active indicator on active tab changes.
113
+ */
114
+ private activeTabOffset;
115
+ /**
116
+ * activeTabScale
117
+ * Used to scale the tab active indicator up or down as animations of the active indicator occur.
118
+ */
119
+ private activeTabScale;
120
+ /**
121
+ * appearance
122
+ * There are two modes of appearance: transparent and subtle.
123
+ */
124
+ appearance?: TablistAppearance;
125
+ /**
126
+ * @internal
127
+ */
128
+ protected appearanceChanged(prev: TablistAppearance, next: TablistAppearance): void;
129
+ /**
130
+ * size
131
+ * defaults to medium.
132
+ * Used to set the size of all the tab controls, which effects text size and margins. Three sizes: small, medium and large.
133
+ */
134
+ size?: TablistSize;
135
+ /**
136
+ * @internal
137
+ */
138
+ protected sizeChanged(prev: TablistSize, next: TablistSize): void;
139
+ /**
140
+ * calculateAnimationProperties
141
+ *
142
+ * Recalculates the active tab offset and scale.
143
+ * These values will be applied to css variables that control the tab active indicator position animations
144
+ */
145
+ private calculateAnimationProperties;
146
+ /**
147
+ * getSelectedTabPosition - gets the x or y coordinates of the tab
148
+ */
149
+ private getTabPosition;
150
+ /**
151
+ * getSelectedTabScale - gets the scale of the tab
152
+ */
153
+ private getTabScale;
154
+ /**
155
+ * Calculates and applies updated values to CSS variables.
156
+ *
157
+ * @param tab - the tab element to apply the updated values to
158
+ * @internal
159
+ */
160
+ private applyUpdatedCSSValues;
161
+ /**
162
+ * Runs through all the operations required for setting the tab active indicator to its starting location, ending
163
+ * location, and applying the animated css class to the tab.
164
+ *
165
+ * @param tab - the tab element to apply the updated values to
166
+ * @internal
167
+ */
168
+ private animationLoop;
169
+ /**
170
+ * Sets the data from the active tab onto the class. used for making all the animation calculations for the active
171
+ * tab indicator.
172
+ *
173
+ * @internal
174
+ */
175
+ private setTabData;
176
+ /**
177
+ * Sets the css variables for the active tab indicator.
178
+ * @internal
179
+ */
180
+ private setAnimationVars;
181
+ /**
182
+ * Initiates the active tab indicator animation loop when activeid changes.
183
+ * @param oldValue - the previous tabId
184
+ * @param newValue - the new tabId
185
+ */
186
+ activeidChanged(oldValue: string, newValue: string): void;
187
+ /**
188
+ * Initiates the active tab indicator animation loop when tabs change.
189
+ */
190
+ tabsChanged(): void;
191
+ }
@@ -0,0 +1,7 @@
1
+ import { Tablist } from './tablist.js';
2
+ /**
3
+ * @public
4
+ * @remarks
5
+ * HTML Element: \<fluent-tablist\>
6
+ */
7
+ export declare const definition: import("@microsoft/fast-element").FASTElementDefinition<typeof Tablist>;
@@ -0,0 +1,44 @@
1
+ import type { ValuesOf } from '../utils/index.js';
2
+ /**
3
+ * The appearance of the component
4
+ * @public
5
+ */
6
+ export declare const TablistAppearance: {
7
+ readonly subtle: "subtle";
8
+ readonly transparent: "transparent";
9
+ };
10
+ /**
11
+ * The types for the Tablist appearance
12
+ * @public
13
+ */
14
+ export type TablistAppearance = ValuesOf<typeof TablistAppearance>;
15
+ /**
16
+ * The size of the component
17
+ * @public
18
+ */
19
+ export declare const TablistSize: {
20
+ readonly small: "small";
21
+ readonly medium: "medium";
22
+ readonly large: "large";
23
+ };
24
+ /**
25
+ * The types for the Tablist size
26
+ * @public
27
+ */
28
+ export type TablistSize = ValuesOf<typeof TablistSize>;
29
+ /**
30
+ * The orientation of the component
31
+ * @public
32
+ */
33
+ export declare const TablistOrientation: {
34
+ readonly horizontal: "horizontal"; /**
35
+ * The appearance of the component
36
+ * @public
37
+ */
38
+ readonly vertical: "vertical";
39
+ };
40
+ /**
41
+ * The types for the Tablist orientation
42
+ * @public
43
+ */
44
+ export type TablistOrientation = ValuesOf<typeof TablistOrientation>;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * @public
3
+ */
4
+ export declare const styles: import("@microsoft/fast-element").ElementStyles;
@@ -0,0 +1,5 @@
1
+ import { Tablist } from './tablist.js';
2
+ /**
3
+ * @public
4
+ */
5
+ export declare const template: import("@microsoft/fast-element").ViewTemplate<Tablist, any>;
@@ -0,0 +1,3 @@
1
+ export declare const isARIADisabledElement: (el: Element) => boolean;
2
+ export declare const isHiddenElement: (el: Element) => boolean;
3
+ export declare const isFocusableElement: (el: Element) => boolean;
@@ -31,6 +31,7 @@ import './switch/define.js';
31
31
  import './tab-panel/define.js';
32
32
  import './tab/define.js';
33
33
  import './tabs/define.js';
34
+ import './tablist/define.js';
34
35
  import './text-input/define.js';
35
36
  import './text/define.js';
36
37
  import './toggle-button/define.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index-rollup.js","sourceRoot":"","sources":["../../src/index-rollup.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAC;AACpC,OAAO,uBAAuB,CAAC;AAC/B,OAAO,2BAA2B,CAAC;AACnC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,mBAAmB,CAAC;AAC3B,OAAO,oBAAoB,CAAC;AAC5B,OAAO,sBAAsB,CAAC;AAC9B,OAAO,6BAA6B,CAAC;AACrC,OAAO,2BAA2B,CAAC;AACnC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,yBAAyB,CAAC;AACjC,OAAO,qBAAqB,CAAC;AAC7B,OAAO,oBAAoB,CAAC;AAC5B,OAAO,yBAAyB,CAAC;AACjC,OAAO,mBAAmB,CAAC;AAC3B,OAAO,mBAAmB,CAAC;AAC3B,OAAO,mBAAmB,CAAC;AAC3B,OAAO,kBAAkB,CAAC;AAC1B,OAAO,yBAAyB,CAAC;AACjC,OAAO,uBAAuB,CAAC;AAC/B,OAAO,uBAAuB,CAAC;AAC/B,OAAO,kBAAkB,CAAC;AAC1B,OAAO,yBAAyB,CAAC;AACjC,OAAO,0BAA0B,CAAC;AAClC,OAAO,yBAAyB,CAAC;AACjC,OAAO,mBAAmB,CAAC;AAC3B,OAAO,4BAA4B,CAAC;AACpC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,qBAAqB,CAAC;AAC7B,OAAO,oBAAoB,CAAC;AAC5B,OAAO,uBAAuB,CAAC;AAC/B,OAAO,iBAAiB,CAAC;AACzB,OAAO,kBAAkB,CAAC;AAC1B,OAAO,wBAAwB,CAAC;AAChC,OAAO,kBAAkB,CAAC;AAC1B,OAAO,2BAA2B,CAAC"}
1
+ {"version":3,"file":"index-rollup.js","sourceRoot":"","sources":["../../src/index-rollup.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAC;AACpC,OAAO,uBAAuB,CAAC;AAC/B,OAAO,2BAA2B,CAAC;AACnC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,mBAAmB,CAAC;AAC3B,OAAO,oBAAoB,CAAC;AAC5B,OAAO,sBAAsB,CAAC;AAC9B,OAAO,6BAA6B,CAAC;AACrC,OAAO,2BAA2B,CAAC;AACnC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,yBAAyB,CAAC;AACjC,OAAO,qBAAqB,CAAC;AAC7B,OAAO,oBAAoB,CAAC;AAC5B,OAAO,yBAAyB,CAAC;AACjC,OAAO,mBAAmB,CAAC;AAC3B,OAAO,mBAAmB,CAAC;AAC3B,OAAO,mBAAmB,CAAC;AAC3B,OAAO,kBAAkB,CAAC;AAC1B,OAAO,yBAAyB,CAAC;AACjC,OAAO,uBAAuB,CAAC;AAC/B,OAAO,uBAAuB,CAAC;AAC/B,OAAO,kBAAkB,CAAC;AAC1B,OAAO,yBAAyB,CAAC;AACjC,OAAO,0BAA0B,CAAC;AAClC,OAAO,yBAAyB,CAAC;AACjC,OAAO,mBAAmB,CAAC;AAC3B,OAAO,4BAA4B,CAAC;AACpC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,qBAAqB,CAAC;AAC7B,OAAO,oBAAoB,CAAC;AAC5B,OAAO,uBAAuB,CAAC;AAC/B,OAAO,iBAAiB,CAAC;AACzB,OAAO,kBAAkB,CAAC;AAC1B,OAAO,qBAAqB,CAAC;AAC7B,OAAO,wBAAwB,CAAC;AAChC,OAAO,kBAAkB,CAAC;AAC1B,OAAO,2BAA2B,CAAC"}
package/dist/esm/index.js CHANGED
@@ -25,7 +25,7 @@ export { StartEnd, endSlotTemplate, startSlotTemplate } from './patterns/start-e
25
25
  export { BaseProgressBar, ProgressBar, ProgressBarDefinition, ProgressBarShape, ProgressBarStyles, ProgressBarTemplate, ProgressBarThickness, ProgressBarValidationState, } from './progress-bar/index.js';
26
26
  export { RadioGroup, RadioGroupDefinition, RadioGroupOrientation, RadioGroupStyles, RadioGroupTemplate, } from './radio-group/index.js';
27
27
  export { Radio, RadioDefinition, RadioStyles, RadioTemplate } from './radio/index.js';
28
- export { RatingDisplay, RatingDisplayColor, RatingDisplayDefinition, RatingDisplaySize, RatingDisplayStyles, RatingDisplayTemplate, } from './rating-display/index.js';
28
+ export { BaseRatingDisplay, RatingDisplay, RatingDisplayColor, RatingDisplayDefinition, RatingDisplaySize, RatingDisplayStyles, RatingDisplayTemplate, } from './rating-display/index.js';
29
29
  export { Slider, SliderDefinition, SliderMode, SliderOrientation, SliderSize, SliderStyles, SliderTemplate, } from './slider/index.js';
30
30
  export { BaseSpinner, Spinner, SpinnerAppearance, SpinnerDefinition, SpinnerSize, SpinnerStyles, SpinnerTemplate, } from './spinner/index.js';
31
31
  export { typographyBody1StrongerStyles, typographyBody1StrongStyles, typographyBody1Styles, typographyBody2Styles, typographyCaption1StrongerStyles, typographyCaption1StrongStyles, typographyCaption1Styles, typographyCaption2StrongStyles, typographyCaption2Styles, typographyDisplayStyles, typographyLargeTitleStyles, typographySubtitle1Styles, typographySubtitle2StrongerStyles, typographySubtitle2Styles, typographyTitle1Styles, typographyTitle2Styles, typographyTitle3Styles, } from './styles/partials/typography.partials.js';
@@ -33,6 +33,7 @@ export { Switch, SwitchDefinition, SwitchLabelPosition, SwitchStyles, SwitchTemp
33
33
  export { TabPanel, TabPanelDefinition, TabPanelStyles, TabPanelTemplate } from './tab-panel/index.js';
34
34
  export { Tab, TabDefinition, TabStyles, TabTemplate } from './tab/index.js';
35
35
  export { Tabs, TabsAppearance, TabsDefinition, TabsOrientation, TabsSize, TabsStyles, TabsTemplate, } from './tabs/index.js';
36
+ export { BaseTablist, Tablist, TablistAppearance, TablistDefinition, TablistOrientation, TablistSize, TablistStyles, TablistTemplate, } from './tablist/index.js';
36
37
  export { BaseTextInput, TextInput, TextInputAppearance, TextInputControlSize, TextInputDefinition, TextInputStyles, TextInputTemplate, TextInputType, } from './text-input/index.js';
37
38
  export { Text, TextAlign, TextDefinition, TextFont, TextSize, TextStyles, TextTemplate, TextWeight, } from './text/index.js';
38
39
  export * from './theme/design-tokens.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- export { RatingDisplay } from './rating-display.js';
1
+ export { BaseRatingDisplay, RatingDisplay } from './rating-display.js';
2
2
  export { RatingDisplayColor, RatingDisplaySize } from './rating-display.options.js';
3
3
  export { template as RatingDisplayTemplate } from './rating-display.template.js';
4
4
  export { styles as RatingDisplayStyles } from './rating-display.styles.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/rating-display/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACpF,OAAO,EAAE,QAAQ,IAAI,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACjF,OAAO,EAAE,MAAM,IAAI,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAC3E,OAAO,EAAE,UAAU,IAAI,uBAAuB,EAAE,MAAM,gCAAgC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/rating-display/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACpF,OAAO,EAAE,QAAQ,IAAI,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACjF,OAAO,EAAE,MAAM,IAAI,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAC3E,OAAO,EAAE,UAAU,IAAI,uBAAuB,EAAE,MAAM,gCAAgC,CAAC"}