@rarui/components 1.10.0 → 1.11.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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  `@rarui/components` components is a component library built with [Stencil](https://stenciljs.com/docs/introduction).
4
4
 
5
+ ## 2025-06-17 `1.8.0`
6
+
7
+ #### 🎉 New features
8
+
9
+ - Added new exhibition `Stepper` component. ([#118](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/118) by [@junior](https://git.rarolabs.com.br/junior))
10
+
5
11
  ## 2025-06-16 `1.10.0`
6
12
 
7
13
  #### 🎉 New features
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.9.0",
2
+ "version": "1.10.0",
3
3
  "tags": [
4
4
  {
5
5
  "name": "rarui-avatar",
@@ -1355,6 +1355,55 @@
1355
1355
  }
1356
1356
  ]
1357
1357
  },
1358
+ {
1359
+ "name": "rarui-stepper",
1360
+ "description": "## Rarui Stepper\n---\nStepper transmit progress through steps.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/stepper) for more details.",
1361
+ "attributes": [
1362
+ {
1363
+ "name": "direction",
1364
+ "default": "horizontal",
1365
+ "description": "Specifies the direction of the stepper. This prop accepts one of the following values: vertical or horizontal.\n\n- horizontal\n- vertical",
1366
+ "type": "string",
1367
+ "values": [
1368
+ {
1369
+ "name": "horizontal",
1370
+ "description": "(default)"
1371
+ },
1372
+ {
1373
+ "name": "vertical"
1374
+ }
1375
+ ]
1376
+ }
1377
+ ]
1378
+ },
1379
+ {
1380
+ "name": "rarui-stepper-step",
1381
+ "description": "## Rarui Stepper Step\n---\nStepper transmit progress through steps.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/stepper) for more details.",
1382
+ "attributes": [
1383
+ {
1384
+ "name": "title",
1385
+ "description": "The title of the step. This provides a brief summary of the step's purpose.",
1386
+ "type": "string"
1387
+ },
1388
+ {
1389
+ "name": "description",
1390
+ "description": "A more detailed description of the step. This can provide additional context or instructions.",
1391
+ "type": "string"
1392
+ },
1393
+ {
1394
+ "name": "active",
1395
+ "default": false,
1396
+ "description": "Indicates whether the step is currently active. An active step is typically highlighted to show that it is the current step.",
1397
+ "type": "boolean"
1398
+ },
1399
+ {
1400
+ "name": "done",
1401
+ "default": false,
1402
+ "description": "Indicates whether the step has been completed. A completed step is usually marked with a checkmark or other indicator.",
1403
+ "type": "boolean"
1404
+ }
1405
+ ]
1406
+ },
1358
1407
  {
1359
1408
  "name": "rarui-text",
1360
1409
  "description": "## Rarui Text\n---\nText is a basic component that allows us to write blocks of text and give it formatting to use within other components, sections and pages of our application or website.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/typography) for more details.",
package/dist/index.d.ts CHANGED
@@ -1,88 +1,3 @@
1
- /**
2
- * @license
3
- * Copyright 2017 Google LLC
4
- * SPDX-License-Identifier: BSD-3-Clause
5
- */
6
-
7
- /** TemplateResult types */
8
- declare const HTML_RESULT = 1;
9
- declare const SVG_RESULT = 2;
10
- declare const MATHML_RESULT = 3;
11
- type ResultType = typeof HTML_RESULT | typeof SVG_RESULT | typeof MATHML_RESULT;
12
- /**
13
- * The return type of the template tag functions, {@linkcode html} and
14
- * {@linkcode svg} when it hasn't been compiled by @lit-labs/compiler.
15
- *
16
- * A `TemplateResult` object holds all the information about a template
17
- * expression required to render it: the template strings, expression values,
18
- * and type of template (html or svg).
19
- *
20
- * `TemplateResult` objects do not create any DOM on their own. To create or
21
- * update DOM you need to render the `TemplateResult`. See
22
- * [Rendering](https://lit.dev/docs/components/rendering) for more information.
23
- *
24
- */
25
- type UncompiledTemplateResult<T extends ResultType = ResultType> = {
26
- ['_$litType$']: T;
27
- strings: TemplateStringsArray;
28
- values: unknown[];
29
- };
30
- /**
31
- * The return type of the template tag functions, {@linkcode html} and
32
- * {@linkcode svg}.
33
- *
34
- * A `TemplateResult` object holds all the information about a template
35
- * expression required to render it: the template strings, expression values,
36
- * and type of template (html or svg).
37
- *
38
- * `TemplateResult` objects do not create any DOM on their own. To create or
39
- * update DOM you need to render the `TemplateResult`. See
40
- * [Rendering](https://lit.dev/docs/components/rendering) for more information.
41
- *
42
- * In Lit 4, this type will be an alias of
43
- * MaybeCompiledTemplateResult, so that code will get type errors if it assumes
44
- * that Lit templates are not compiled. When deliberately working with only
45
- * one, use either {@linkcode CompiledTemplateResult} or
46
- * {@linkcode UncompiledTemplateResult} explicitly.
47
- */
48
- type TemplateResult<T extends ResultType = ResultType> = UncompiledTemplateResult<T>;
49
- /**
50
- * Object specifying options for controlling lit-html rendering. Note that
51
- * while `render` may be called multiple times on the same `container` (and
52
- * `renderBefore` reference node) to efficiently update the rendered content,
53
- * only the options passed in during the first render are respected during
54
- * the lifetime of renders to that unique `container` + `renderBefore`
55
- * combination.
56
- */
57
- interface RenderOptions {
58
- /**
59
- * An object to use as the `this` value for event listeners. It's often
60
- * useful to set this to the host component rendering a template.
61
- */
62
- host?: object;
63
- /**
64
- * A DOM node before which to render content in the container.
65
- */
66
- renderBefore?: ChildNode | null;
67
- /**
68
- * Node used for cloning the template (`importNode` will be called on this
69
- * node). This controls the `ownerDocument` of the rendered DOM, along with
70
- * any inherited context. Defaults to the global `document`.
71
- */
72
- creationScope?: {
73
- importNode(node: Node, deep?: boolean): Node;
74
- };
75
- /**
76
- * The initial connected state for the top-level part being rendered. If no
77
- * `isConnected` option is set, `AsyncDirective`s will be connected by
78
- * default. Set to `false` if the initial render occurs in a disconnected tree
79
- * and `AsyncDirective`s should see `isConnected === false` for their initial
80
- * render. The `part.setConnected()` method must be used subsequent to initial
81
- * render to change the connected state of the part.
82
- */
83
- isConnected?: boolean;
84
- }
85
-
86
1
  /**
87
2
  * A CSSResult or native CSSStyleSheet.
88
3
  *
@@ -914,6 +829,49 @@ declare abstract class ReactiveElement extends HTMLElement implements ReactiveCo
914
829
  protected firstUpdated(_changedProperties: PropertyValues): void;
915
830
  }
916
831
 
832
+ /**
833
+ * @license
834
+ * Copyright 2017 Google LLC
835
+ * SPDX-License-Identifier: BSD-3-Clause
836
+ */
837
+
838
+ /**
839
+ * Object specifying options for controlling lit-html rendering. Note that
840
+ * while `render` may be called multiple times on the same `container` (and
841
+ * `renderBefore` reference node) to efficiently update the rendered content,
842
+ * only the options passed in during the first render are respected during
843
+ * the lifetime of renders to that unique `container` + `renderBefore`
844
+ * combination.
845
+ */
846
+ interface RenderOptions {
847
+ /**
848
+ * An object to use as the `this` value for event listeners. It's often
849
+ * useful to set this to the host component rendering a template.
850
+ */
851
+ host?: object;
852
+ /**
853
+ * A DOM node before which to render content in the container.
854
+ */
855
+ renderBefore?: ChildNode | null;
856
+ /**
857
+ * Node used for cloning the template (`importNode` will be called on this
858
+ * node). This controls the `ownerDocument` of the rendered DOM, along with
859
+ * any inherited context. Defaults to the global `document`.
860
+ */
861
+ creationScope?: {
862
+ importNode(node: Node, deep?: boolean): Node;
863
+ };
864
+ /**
865
+ * The initial connected state for the top-level part being rendered. If no
866
+ * `isConnected` option is set, `AsyncDirective`s will be connected by
867
+ * default. Set to `false` if the initial render occurs in a disconnected tree
868
+ * and `AsyncDirective`s should see `isConnected === false` for their initial
869
+ * render. The `part.setConnected()` method must be used subsequent to initial
870
+ * render to change the connected state of the part.
871
+ */
872
+ isConnected?: boolean;
873
+ }
874
+
917
875
  /**
918
876
  * @license
919
877
  * Copyright 2017 Google LLC
@@ -17015,6 +16973,94 @@ interface CardSprinkle {
17015
16973
  backgroundColor?: AddDollar<keyof typeof cardBackgroundColorProperties> | Conditions<AddDollar<keyof typeof cardBackgroundColorProperties>>;
17016
16974
  }
17017
16975
 
16976
+ declare const stepperStyles: {
16977
+ stepper: RuntimeFn<{
16978
+ /**
16979
+ * Specifies the direction of the stepper. This prop accepts one of the following values: vertical or horizontal.
16980
+ * @default horizontal
16981
+ */
16982
+ direction: {
16983
+ horizontal: {
16984
+ width: "100%";
16985
+ flexDirection: "row";
16986
+ };
16987
+ vertical: {
16988
+ flexDirection: "column";
16989
+ height: "100%";
16990
+ };
16991
+ };
16992
+ }>;
16993
+ step: RuntimeFn<{
16994
+ direction: {
16995
+ /**
16996
+ * Specifies the direction of the stepper. This prop accepts one of the following values: vertical or horizontal.
16997
+ * @default horizontal
16998
+ */
16999
+ horizontal: {
17000
+ flexDirection: "column";
17001
+ ":after": {
17002
+ top: "20px";
17003
+ height: "1px";
17004
+ width: "calc(100% - 60px)";
17005
+ left: "calc(50% + 30px)";
17006
+ };
17007
+ };
17008
+ vertical: {
17009
+ ":after": {
17010
+ width: "1px";
17011
+ height: "calc(100% - 60px)";
17012
+ top: "calc(50% + 30px)";
17013
+ left: "18px";
17014
+ };
17015
+ };
17016
+ };
17017
+ }>;
17018
+ circle: RuntimeFn<{
17019
+ /**
17020
+ * Indicates whether the step is currently active. An active step is typically highlighted to show that it is the current step.
17021
+ * @default false
17022
+ */
17023
+ active: {
17024
+ true: {
17025
+ backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17026
+ color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17027
+ };
17028
+ };
17029
+ /**
17030
+ * Indicates whether the step has been completed. A completed step is usually marked with a checkmark or other indicator.
17031
+ * @default false
17032
+ */
17033
+ done: {
17034
+ true: {
17035
+ backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17036
+ color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17037
+ };
17038
+ };
17039
+ }>;
17040
+ separator: RuntimeFn<{
17041
+ direction: {
17042
+ /**
17043
+ * Specifies the direction of the stepper. This prop accepts one of the following values: vertical or horizontal.
17044
+ * @default horizontal
17045
+ */
17046
+ horizontal: {
17047
+ height: "1px";
17048
+ marginLeft: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17049
+ marginRight: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17050
+ marginTop: "20px";
17051
+ };
17052
+ vertical: {
17053
+ width: "1px";
17054
+ marginTop: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17055
+ marginBottom: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
17056
+ marginLeft: "18px";
17057
+ };
17058
+ };
17059
+ }>;
17060
+ };
17061
+
17062
+ type StepperVariants = NonNullable<RecipeVariants<typeof stepperStyles.stepper> & RecipeVariants<typeof stepperStyles.circle>>;
17063
+
17018
17064
  type BadgeProps = BadgeVariants;
17019
17065
 
17020
17066
  interface AvatarTypings {
@@ -17036,6 +17082,8 @@ interface DividerProps extends DividerSprinkle {
17036
17082
 
17037
17083
  type IconProps = IconSprinkle;
17038
17084
 
17085
+ type StepperProps = Pick<StepperVariants, "direction">;
17086
+
17039
17087
  interface TitleProps extends TitleSprinkle {
17040
17088
  /**
17041
17089
  * Type of html tag to create for the title.
@@ -17104,6 +17152,18 @@ interface TooltipTyping {
17104
17152
  }
17105
17153
  type TooltipProps = TooltipTyping & TooltipVariants;
17106
17154
 
17155
+ interface StepperStepTyping {
17156
+ /**
17157
+ * The title of the step. This provides a brief summary of the step's purpose.
17158
+ */
17159
+ title?: string;
17160
+ /**
17161
+ * A more detailed description of the step. This can provide additional context or instructions.
17162
+ */
17163
+ description?: string;
17164
+ }
17165
+ type StepperStepProps = StepperStepTyping & Pick<StepperVariants, "active" | "done">;
17166
+
17107
17167
  interface ProgressTyping {
17108
17168
  /**
17109
17169
  * The progress percentage, represented as a number between 0 and 100.
@@ -17254,7 +17314,7 @@ declare class RaruiDivider extends LitElement {
17254
17314
  render(): TemplateResult<1>;
17255
17315
  }
17256
17316
 
17257
- type IconName = "phone-call-outlined" | "add-circle-filled" | "add-circle-outlined" | "alarm-filled" | "alarm-outlined" | "alternate-email" | "archive-all-filled" | "archive-all-outlined" | "archive-filled" | "archive-in-filled" | "archive-in-outlined" | "archive-outlined" | "arrow-alt-down" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-circle-down-filled" | "arrow-circle-down-outlined" | "arrow-circle-up-filled" | "arrow-circle-up-outlined" | "arrow-circled-down-circle-outlined" | "arrow-circled-down-filled" | "arrow-circled-up-circle-outlined" | "arrow-direction-down-up" | "arrow-direction-left-right" | "arrow-direction-right-left" | "arrow-direction-up-down" | "arrow-directions" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-first-page" | "arrow-last-page" | "arrow-left" | "arrow-line-down" | "arrow-line-left" | "arrow-line-long-down" | "arrow-line-long-left" | "arrow-line-long-right" | "arrow-line-long-up" | "arrow-line-right" | "arrow-line-up" | "arrow-right" | "arrow-subdirectory-left" | "arrow-subdirectory-right" | "arrow-trending-down" | "arrow-trending-up" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attachment" | "backspace" | "backspace-outlined" | "barley" | "barley-off" | "bolt-circle-filled" | "bolt-circle-outlined" | "bookmark-filled" | "bookmark-outlined" | "calendar-date-range-filled" | "calendar-date-range-outlined" | "calendar-event-filled" | "calendar-event-outlined" | "calendar-filled" | "calendar-outlined" | "camera-filled" | "camera-outlined" | "camera-shutter-filled" | "camera-shutter-outlined" | "cancel-circle-filled" | "cancel-circle-outlined" | "car-filled" | "car-outlined" | "chart-bars-filled" | "chart-bars-outlined" | "chat-bubble-filled" | "chat-bubble-outlined" | "chat-message-filled" | "chat-message-outlined" | "check" | "check-circle-filled" | "check-circle-outlined" | "check-small" | "chevron-big-down" | "chevron-big-left" | "chevron-big-right" | "chevron-big-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock-filled" | "clock-outlined" | "close" | "cloud-filled" | "cloud-outlined" | "contact-support-filled" | "contact-support-outlined" | "content-copy-filled" | "content-copy-outlined" | "content-paste-filled" | "content-paste-outlined" | "conversation-filled" | "conversation-outlined" | "copyright-filled" | "copyright-outlined" | "credit-card-filled" | "credit-card-outlined" | "danger-filled" | "danger-outlined" | "dashboard-filled" | "dashboard-outlined" | "document-filled" | "document-outlined" | "document-text-filled" | "document-text-outlined" | "download-filled" | "download-outlined" | "eco-filled" | "eco-outlined" | "edit-filled" | "edit-outlined" | "euro-symbol" | "exit-fullscreen" | "eye-filled" | "eye-off-filled" | "eye-off-outlined" | "eye-outlined" | "facebook-filled" | "facebook-outlined" | "file-copy-filled" | "file-copy-outlined" | "filter-alt-filled" | "filter-alt-outlined" | "filter-list" | "fingerprint" | "flag-filled" | "flag-outlined" | "flag-tour-filled" | "flag-tour-outlined" | "flower-filled" | "flower-outlined" | "folder-filled" | "folder-list-filled" | "folder-list-outlined" | "folder-open" | "folder-outlined" | "fruit-apple-filled" | "fruit-apple-outlined" | "fullscreen-filled" | "fullscreen-outlined" | "google" | "google-play" | "headphones-filled" | "headphones-outlined" | "heart-filled" | "heart-outlined" | "help-filled" | "help-outlined" | "history" | "home-filled" | "home-outlined" | "image-filled" | "image-outlined" | "info-circle-filled" | "info-circle-outlined" | "instagram" | "instagram-outlined" | "label-filled" | "label-important-filled" | "label-important-outlined" | "label-outlined" | "language" | "lightbulb-filled" | "lightbulb-outlined" | "link" | "linkedin-filled" | "linkedin-outlined" | "loader" | "loading" | "lock-filled" | "lock-open-filled" | "lock-open-outlined" | "lock-outlined" | "login" | "logout" | "mail-filled" | "mail-open-filled" | "mail-open-outlined" | "mail-outlined" | "menu" | "menu-large" | "microphone-filled" | "microphone-outlined" | "minus" | "money-filled" | "money-outlined" | "mood-bad" | "mood-bad-outlined" | "mood-filled" | "mood-outlined" | "more-horiz" | "more-vert" | "music-note-filled" | "music-note-outlined" | "notification-filled" | "notification-outlined" | "open-in-new" | "package" | "package-outlined" | "pause-filled" | "pause-outlined" | "pets-filled" | "pets-outlined" | "phone-call-filled" | "phone-filled" | "phone-outlined" | "pin-filled" | "pin-outlined" | "play-arrow-filled" | "play-arrow-outlined" | "play-circle-filled" | "play-circle-outlined" | "plus" | "power-settings-new" | "printer-filled" | "printer-outlined" | "push-pin-filled" | "push-pin-outlined" | "receipt-filled" | "receipt-outlined" | "recycle" | "redeem" | "redo" | "refresh" | "refresh-alt" | "remove" | "remove-circle-filled" | "remove-circle-outlined" | "repeat" | "reply" | "save-alt" | "screen-outlined" | "search" | "send-filled" | "send-outlined" | "sentiment-dissatisfied-filled" | "sentiment-dissatisfied-outlined" | "sentiment-neutral-filled" | "sentiment-neutral-outlined" | "sentiment-satisfied-filled" | "sentiment-satisfied-outlined" | "sentiment-very-dissatisfied-filled" | "sentiment-very-dissatisfied-outlined" | "sentiment-very-satisfied-filled" | "sentiment-very-satisfied-outlined" | "settings-filled" | "settings-outlined" | "share-filled" | "share-outlined" | "shopping-bag-filled" | "shopping-bag-outlined" | "shopping-cart-add" | "shopping-cart-filled" | "shopping-cart-outlined" | "sprout" | "sprout-outline-outlined" | "star-filled" | "star-outlined" | "stay-primary-portrait" | "storefront" | "tag-filled" | "tag-outlined" | "textsms-filled" | "textsms-outlined" | "thumb-down-filled" | "thumb-down-outlined" | "thumb-up-filled" | "thumb-up-outlined" | "tiktok" | "toc" | "trash-filled" | "trash-outlined" | "truck-filled" | "truck-outlined" | "tune" | "twitter" | "undo" | "upload-filled" | "upload-outlined" | "user-circle-filled" | "user-circle-outlined" | "user-filled" | "user-outlined" | "user-square-filled" | "user-square-outlined" | "users-filled" | "users-outlined" | "view-grid-filled" | "view-grid-outlined" | "view-list-filled" | "view-list-outlined" | "warning-bubble-filled" | "warning-bubble-outlined" | "warning-filled" | "warning-outlined" | "whatsapp-filled" | "whatsapp-outlined" | "work-filled" | "work-outlined" | "wysiwyg-filled" | "youtube-filled" | "youtube-outlined" | "zoom-in" | "zoom-out";
17317
+ type IconName = "add-circle-filled" | "add-circle-outlined" | "alarm-filled" | "alarm-outlined" | "alternate-email" | "archive-all-filled" | "archive-all-outlined" | "archive-filled" | "archive-in-filled" | "archive-in-outlined" | "archive-outlined" | "arrow-alt-down" | "arrow-alt-left" | "arrow-alt-right" | "arrow-alt-up" | "arrow-circle-down-filled" | "arrow-circle-down-outlined" | "arrow-circle-up-filled" | "arrow-circle-up-outlined" | "arrow-circled-down-circle-outlined" | "arrow-circled-down-filled" | "arrow-circled-up-circle-outlined" | "arrow-direction-down-up" | "arrow-direction-left-right" | "arrow-direction-right-left" | "arrow-direction-up-down" | "arrow-directions" | "arrow-down" | "arrow-down-left" | "arrow-down-right" | "arrow-first-page" | "arrow-last-page" | "arrow-left" | "arrow-line-down" | "arrow-line-left" | "arrow-line-long-down" | "arrow-line-long-left" | "arrow-line-long-right" | "arrow-line-long-up" | "arrow-line-right" | "arrow-line-up" | "arrow-right" | "arrow-subdirectory-left" | "arrow-subdirectory-right" | "arrow-trending-down" | "arrow-trending-up" | "arrow-up" | "arrow-up-left" | "arrow-up-right" | "attachment" | "backspace" | "backspace-outlined" | "barley" | "barley-off" | "bolt-circle-filled" | "bolt-circle-outlined" | "bookmark-filled" | "bookmark-outlined" | "calendar-date-range-filled" | "calendar-date-range-outlined" | "calendar-event-filled" | "calendar-event-outlined" | "calendar-filled" | "calendar-outlined" | "camera-filled" | "camera-outlined" | "camera-shutter-filled" | "camera-shutter-outlined" | "cancel-circle-filled" | "cancel-circle-outlined" | "car-filled" | "car-outlined" | "chart-bars-filled" | "chart-bars-outlined" | "chat-bubble-filled" | "chat-bubble-outlined" | "chat-message-filled" | "chat-message-outlined" | "check" | "check-circle-filled" | "check-circle-outlined" | "check-small" | "chevron-big-down" | "chevron-big-left" | "chevron-big-right" | "chevron-big-up" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock-filled" | "clock-outlined" | "close" | "cloud-filled" | "cloud-outlined" | "contact-support-filled" | "contact-support-outlined" | "content-copy-filled" | "content-copy-outlined" | "content-paste-filled" | "content-paste-outlined" | "conversation-filled" | "conversation-outlined" | "copyright-filled" | "copyright-outlined" | "credit-card-filled" | "credit-card-outlined" | "danger-filled" | "danger-outlined" | "dashboard-filled" | "dashboard-outlined" | "document-filled" | "document-outlined" | "document-text-filled" | "document-text-outlined" | "download-filled" | "download-outlined" | "eco-filled" | "eco-outlined" | "edit-filled" | "edit-outlined" | "euro-symbol" | "exit-fullscreen" | "eye-filled" | "eye-off-filled" | "eye-off-outlined" | "eye-outlined" | "facebook-filled" | "facebook-outlined" | "file-copy-filled" | "file-copy-outlined" | "filter-alt-filled" | "filter-alt-outlined" | "filter-list" | "fingerprint" | "flag-filled" | "flag-outlined" | "flag-tour-filled" | "flag-tour-outlined" | "flower-filled" | "flower-outlined" | "folder-filled" | "folder-list-filled" | "folder-list-outlined" | "folder-open" | "folder-outlined" | "fruit-apple-filled" | "fruit-apple-outlined" | "fullscreen-filled" | "fullscreen-outlined" | "google" | "google-play" | "headphones-filled" | "headphones-outlined" | "heart-filled" | "heart-outlined" | "help-filled" | "help-outlined" | "history" | "home-filled" | "home-outlined" | "image-filled" | "image-outlined" | "info-circle-filled" | "info-circle-outlined" | "instagram" | "instagram-outlined" | "label-filled" | "label-important-filled" | "label-important-outlined" | "label-outlined" | "language" | "lightbulb-filled" | "lightbulb-outlined" | "link" | "linkedin-filled" | "linkedin-outlined" | "loader" | "loading" | "lock-filled" | "lock-open-filled" | "lock-open-outlined" | "lock-outlined" | "login" | "logout" | "mail-filled" | "mail-open-filled" | "mail-open-outlined" | "mail-outlined" | "menu" | "menu-large" | "microphone-filled" | "microphone-outlined" | "minus" | "money-filled" | "money-outlined" | "mood-bad" | "mood-bad-outlined" | "mood-filled" | "mood-outlined" | "more-horiz" | "more-vert" | "music-note-filled" | "music-note-outlined" | "notification-filled" | "notification-outlined" | "open-in-new" | "package" | "package-outlined" | "pause-filled" | "pause-outlined" | "pets-filled" | "pets-outlined" | "phone-call-filled" | "phone-call-outlined" | "phone-filled" | "phone-outlined" | "pin-filled" | "pin-outlined" | "play-arrow-filled" | "play-arrow-outlined" | "play-circle-filled" | "play-circle-outlined" | "plus" | "power-settings-new" | "printer-filled" | "printer-outlined" | "push-pin-filled" | "push-pin-outlined" | "receipt-filled" | "receipt-outlined" | "recycle" | "redeem" | "redo" | "refresh" | "refresh-alt" | "remove" | "remove-circle-filled" | "remove-circle-outlined" | "repeat" | "reply" | "save-alt" | "screen-outlined" | "search" | "send-filled" | "send-outlined" | "sentiment-dissatisfied-filled" | "sentiment-dissatisfied-outlined" | "sentiment-neutral-filled" | "sentiment-neutral-outlined" | "sentiment-satisfied-filled" | "sentiment-satisfied-outlined" | "sentiment-very-dissatisfied-filled" | "sentiment-very-dissatisfied-outlined" | "sentiment-very-satisfied-filled" | "sentiment-very-satisfied-outlined" | "settings-filled" | "settings-outlined" | "share-filled" | "share-outlined" | "shopping-bag-filled" | "shopping-bag-outlined" | "shopping-cart-add" | "shopping-cart-filled" | "shopping-cart-outlined" | "sprout" | "sprout-outline-outlined" | "star-filled" | "star-outlined" | "stay-primary-portrait" | "storefront" | "tag-filled" | "tag-outlined" | "textsms-filled" | "textsms-outlined" | "thumb-down-filled" | "thumb-down-outlined" | "thumb-up-filled" | "thumb-up-outlined" | "tiktok" | "toc" | "trash-filled" | "trash-outlined" | "truck-filled" | "truck-outlined" | "tune" | "twitter" | "undo" | "upload-filled" | "upload-outlined" | "user-circle-filled" | "user-circle-outlined" | "user-filled" | "user-outlined" | "user-square-filled" | "user-square-outlined" | "users-filled" | "users-outlined" | "view-grid-filled" | "view-grid-outlined" | "view-list-filled" | "view-list-outlined" | "warning-bubble-filled" | "warning-bubble-outlined" | "warning-filled" | "warning-outlined" | "whatsapp-filled" | "whatsapp-outlined" | "work-filled" | "work-outlined" | "wysiwyg-filled" | "youtube-filled" | "youtube-outlined" | "zoom-in" | "zoom-out";
17258
17318
 
17259
17319
  declare global {
17260
17320
  interface HTMLElementTagNameMap {
@@ -17290,6 +17350,53 @@ declare class RaruiIcon extends LitElement {
17290
17350
  render(): TemplateResult<1> | null;
17291
17351
  }
17292
17352
 
17353
+ declare global {
17354
+ interface HTMLElementTagNameMap {
17355
+ "rarui-stepper-step": RaruiStepperStep;
17356
+ }
17357
+ }
17358
+ /**
17359
+ * ## Rarui Stepper Step
17360
+ * ---
17361
+ * Stepper transmit progress through steps.
17362
+ *
17363
+ * See [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/stepper) for more details.
17364
+ */
17365
+ type StepperStepProperties = Partial<StepperStepProps>;
17366
+
17367
+ declare class RaruiStepperStep extends LitElement {
17368
+ description: StepperStepProperties["description"];
17369
+ active: StepperStepProperties["active"];
17370
+ done: StepperStepProperties["done"];
17371
+ private direction;
17372
+ static styles: CSSResult;
17373
+ connectedCallback(): void;
17374
+ render(): TemplateResult<1>;
17375
+ }
17376
+
17377
+ declare global {
17378
+ interface HTMLElementTagNameMap {
17379
+ "rarui-stepper": RaruiStepper;
17380
+ }
17381
+ }
17382
+ /**
17383
+ * ## Rarui Stepper
17384
+ * ---
17385
+ * Stepper transmit progress through steps.
17386
+ *
17387
+ * See [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/stepper) for more details.
17388
+ */
17389
+ type StepperProperties = Partial<StepperProps>;
17390
+
17391
+ declare class RaruiStepper extends LitElement {
17392
+ direction: StepperProperties["direction"];
17393
+ private assignedSteps;
17394
+ private steps;
17395
+ static styles: CSSResult;
17396
+ firstUpdated(): void;
17397
+ render(): TemplateResult<1>;
17398
+ }
17399
+
17293
17400
  declare global {
17294
17401
  interface HTMLElementTagNameMap {
17295
17402
  "rarui-text": RaruiText;