@loja-integrada/admin-components 0.18.6 → 0.18.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/Components/SidebarFixed/SidebarFixed.d.ts +4 -0
- package/dist/Forms/Dropdown/Dropdown.d.ts +5 -0
- package/dist/Forms/FloatingLabelInput/FloatingLabelInput.d.ts +1 -0
- package/dist/admin-components.cjs.development.js +43956 -2502
- package/dist/admin-components.cjs.development.js.map +1 -1
- package/dist/admin-components.cjs.production.min.js +1 -1
- package/dist/admin-components.cjs.production.min.js.map +1 -1
- package/dist/admin-components.esm.js +43954 -2501
- package/dist/admin-components.esm.js.map +1 -1
- package/package.json +12 -2
- package/src/Components/Button/Button.spec.tsx +3 -1
- package/src/Components/Modal/Modal.spec.tsx +2 -1
- package/src/Components/SidebarFixed/SidebarFixed.spec.tsx +2 -1
- package/src/Components/SidebarFixed/SidebarFixed.tsx +27 -15
- package/src/Components/TableList/TableList.spec.tsx +2 -1
- package/src/Components/TableList/TableListItem.spec.tsx +2 -1
- package/src/Components/TableList/TableListItemLoading.spec.tsx +2 -1
- package/src/Components/TableList/TableListItemWrapper.spec.tsx +2 -1
- package/src/Components/Tabs/Tabs.spec.tsx +2 -1
- package/src/Components/Timeline/Timeline.spec.tsx +2 -1
- package/src/Forms/Checkbox/Checkbox.spec.tsx +2 -1
- package/src/Forms/Dropdown/Dropdown.spec.tsx +2 -1
- package/src/Forms/Dropdown/Dropdown.tsx +14 -4
- package/src/Forms/FloatingLabelInput/FloatingLabelInput.spec.tsx +2 -1
- package/src/Forms/FloatingLabelInput/FloatingLabelInput.stories.tsx +1 -0
- package/src/Forms/FloatingLabelInput/FloatingLabelInput.tsx +15 -2
- package/src/Forms/FloatingLabelInputCurrency/FloatingLabelInputCurrency.spec.tsx +2 -1
- package/src/Forms/FloatingLabelInputMask/FloatingLabelInputMask.spec.tsx +2 -1
- package/src/Forms/Input/Input.spec.tsx +2 -1
- package/src/Forms/InputCurrency/InputCurrency.spec.tsx +2 -1
- package/src/Forms/InputHelpText/InputHelpText.spec.tsx +2 -1
- package/src/Forms/InputLabel/InputLabel.spec.tsx +2 -1
- package/src/Forms/InputMask/InputMask.spec.tsx +2 -1
- package/src/Forms/RadioButton/RadioButton.spec.tsx +2 -1
- package/src/Forms/Select/Select.spec.tsx +2 -1
- package/src/Forms/Toggle/Toggle.spec.tsx +2 -1
- package/src/Forms/ToggleButton/ToggleButton.spec.tsx +2 -1
- package/src/Icons/Icon.spec.tsx +2 -1
- package/src/Indicators/Alert/Alert.spec.tsx +2 -1
- package/src/Indicators/Badge/Badge.spec.tsx +2 -1
- package/src/Indicators/InformationBox/InformationBox.spec.tsx +2 -1
- package/src/Indicators/Status/Status.spec.tsx +2 -1
- package/src/Indicators/Tag/Tag.spec.tsx +2 -1
- package/src/Indicators/Toast/Toast.spec.tsx +2 -1
- package/src/Indicators/Tooltip/Tooltip.spec.tsx +2 -1
- package/src/Layout/ActionBar/ActionBar.spec.tsx +2 -1
- package/src/Layout/Box/Box.spec.tsx +2 -1
- package/src/Layout/Box/Components/Content/BoxContent.spec.tsx +2 -1
- package/src/Layout/Box/Components/Header/BoxHeader.spec.tsx +2 -1
- package/src/Layout/Box/Components/Separator/BoxSeparator.spec.tsx +2 -1
- package/src/Layout/Container/Container.spec.tsx +2 -1
- package/src/Navigation/Breadcrumb/Breadcrumb.spec.tsx +2 -1
- package/src/Navigation/Pagination/Pagination.spec.tsx +2 -1
|
@@ -5,7 +5,8 @@ import * as stories from "./BoxContent.stories"
|
|
|
5
5
|
|
|
6
6
|
const { Content } = composeStories(stories)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
const specTitle = require('cypress-sonarqube-reporter/specTitle');
|
|
9
|
+
describe(specTitle('BoxContent tests'), () => {
|
|
9
10
|
|
|
10
11
|
it('Default', () => {
|
|
11
12
|
mount(<Content />)
|
|
@@ -5,7 +5,8 @@ import * as stories from "./BoxHeader.stories"
|
|
|
5
5
|
|
|
6
6
|
const { Header } = composeStories(stories)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
const specTitle = require('cypress-sonarqube-reporter/specTitle');
|
|
9
|
+
describe(specTitle('BoxHeader tests'), () => {
|
|
9
10
|
|
|
10
11
|
it('Default', () => {
|
|
11
12
|
mount(<Header />)
|
|
@@ -5,7 +5,8 @@ import * as stories from "./BoxSeparator.stories"
|
|
|
5
5
|
|
|
6
6
|
const { Separator } = composeStories(stories)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
const specTitle = require('cypress-sonarqube-reporter/specTitle');
|
|
9
|
+
describe(specTitle('BoxSeparator tests'), () => {
|
|
9
10
|
|
|
10
11
|
it('Default', () => {
|
|
11
12
|
mount(<Separator />)
|
|
@@ -7,7 +7,8 @@ import { CONTAINER_MAX_SIZE } from '../constants'
|
|
|
7
7
|
|
|
8
8
|
const { Default, Expanded } = composeStories(stories)
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
const specTitle = require('cypress-sonarqube-reporter/specTitle');
|
|
11
|
+
describe(specTitle('Container tests'), () => {
|
|
11
12
|
it('Default', () => {
|
|
12
13
|
mount(<Default />)
|
|
13
14
|
cy.get('.page-container').should('have.class', CONTAINER_MAX_SIZE.default)
|
|
@@ -5,7 +5,8 @@ import * as stories from "./Breadcrumb.stories"
|
|
|
5
5
|
|
|
6
6
|
const { Default, NoPrevious, WithPrevious, WithPreviousCustom, WithMobileCenter, WithHelp, WithActions } = composeStories(stories)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
const specTitle = require('cypress-sonarqube-reporter/specTitle');
|
|
9
|
+
describe(specTitle('Breadcrumb tests'), () => {
|
|
9
10
|
|
|
10
11
|
it('Default', () => {
|
|
11
12
|
mount(<Default />)
|
|
@@ -5,7 +5,8 @@ import * as stories from "./Pagination.stories"
|
|
|
5
5
|
|
|
6
6
|
const { Default, WithoutItems, WithLengthOptions } = composeStories(stories)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
const specTitle = require('cypress-sonarqube-reporter/specTitle');
|
|
9
|
+
describe(specTitle('Pagination tests'), () => {
|
|
9
10
|
|
|
10
11
|
it('Default', () => {
|
|
11
12
|
mount(<Default />)
|