@agrotools1/at-components 0.1.7 → 0.1.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/Accordion/Accordion.d.ts +49 -0
- package/dist/Accordion/index.d.ts +1 -0
- package/dist/Avatar/Avatar.d.ts +2 -2
- package/dist/Button/Button.d.ts +1 -1
- package/dist/Checkbox/Checkbox.d.ts +34 -20
- package/dist/DataTable/Column/Column.d.ts +1 -1
- package/dist/DataTable/Counters/Counters.d.ts +1 -1
- package/dist/DataTable/DataTable.d.ts +1 -1
- package/dist/DataTable/index.d.ts +3 -20
- package/dist/Icons/icons.d.ts +5029 -0
- package/dist/Input/Input.core.d.ts +2 -2
- package/dist/Input/index.d.ts +2 -2
- package/dist/Modal/Modal.d.ts +3 -3
- package/dist/Paginator/Paginator.d.ts +1 -1
- package/dist/ProgressBar/ProgressBar.d.ts +12 -2
- package/dist/Select/Item/Item.d.ts +1 -1
- package/dist/Select/Select.core.d.ts +1 -1
- package/dist/Select/Select.multiple.d.ts +1 -1
- package/dist/Select/Select.single.d.ts +1 -1
- package/dist/Select/index.d.ts +2 -2
- package/dist/Tabs/Tab/Tab.d.ts +1 -1
- package/dist/Tabs/Tabs.d.ts +1 -1
- package/dist/Tag/index.d.ts +1 -0
- package/dist/Tipograph/Paragraph/Paragraph.d.ts +2 -2
- package/dist/Tipograph/Title/Title.d.ts +1 -1
- package/dist/Tipograph/index.d.ts +5 -5
- package/dist/Toggle/Toggle.d.ts +11 -1
- package/dist/Upload/Upload.d.ts +12 -2
- package/dist/agrotools-theme.css +2 -2
- package/dist/agrotools-theme.css.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtAngleDownSolidIcon/AtAngleDownSolidIcon.vue.js +33 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtAngleDownSolidIcon/index.js +5 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtAngleUpSolidIcon/AtAngleUpSolidIcon.vue.js +33 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtAngleUpSolidIcon/index.js +5 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtCheckCircleSolidIcon/AtCheckCircleSolidIcon.vue.js +45 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtCheckCircleSolidIcon/index.js +5 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtCircleMinusSolidIcon/AtCircleMinusSolidIcon.vue.js +45 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtCircleMinusSolidIcon/index.js +5 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtCircleXMarkSolidIcon/AtCircleXMarkSolidIcon.vue.js +45 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtCircleXMarkSolidIcon/index.js +5 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtWarningSolidIcon/AtWarningSolidIcon.vue.js +33 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/AtWarningSolidIcon/index.js +5 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/_virtual/_plugin-vue_export-helper.js +9 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/components/IconWrapper/IconWrapper.vue.js +6 -0
- package/dist/node_modules/.pnpm/agrotools-icons@0.2.6/node_modules/agrotools-icons/dist/components/IconWrapper/IconWrapper.vue2.js +27 -0
- package/dist/packages/at-components/src/Accordion/Accordion.vue.js +77 -0
- package/dist/packages/at-components/src/Accordion/Accordion.vue2.js +51 -0
- package/dist/{Avatar → packages/at-components/src/Avatar}/Avatar.vue.js +1 -1
- package/dist/{Button → packages/at-components/src/Button}/Button.vue.js +1 -1
- package/dist/{CardWithInsights → packages/at-components/src/CardWithInsights}/CardWithInsights.vue.js +1 -1
- package/dist/packages/at-components/src/Checkbox/Checkbox.vue.js +38 -0
- package/dist/packages/at-components/src/Checkbox/Checkbox.vue2.js +73 -0
- package/dist/{DataTable → packages/at-components/src/DataTable}/Column/Column.vue.js +6 -6
- package/dist/{DataTable → packages/at-components/src/DataTable}/Counters/Counters.vue.js +1 -1
- package/dist/packages/at-components/src/DataTable/DataTable.vue.js +94 -0
- package/dist/packages/at-components/src/DataTable/DataTable.vue2.js +125 -0
- package/dist/packages/at-components/src/DataTable/index.js +11 -0
- package/dist/{Faq → packages/at-components/src/Faq}/Faq.vue.js +1 -1
- package/dist/{Illustration → packages/at-components/src/Illustration}/Illustration.vue.js +2 -2
- package/dist/{Input → packages/at-components/src/Input}/Input.core.vue.js +1 -1
- package/dist/{Modal → packages/at-components/src/Modal}/Modal.vue.js +1 -1
- package/dist/{Modal → packages/at-components/src/Modal}/Modal.vue2.js +2 -2
- package/dist/{Paginator → packages/at-components/src/Paginator}/Paginator.vue.js +1 -1
- package/dist/{ProgressBar → packages/at-components/src/ProgressBar}/ProgressBar.vue.js +1 -1
- package/dist/{Select → packages/at-components/src/Select}/Item/Item.vue.js +1 -1
- package/dist/{Select → packages/at-components/src/Select}/Select.core.vue.js +1 -1
- package/dist/{Select → packages/at-components/src/Select}/Select.core.vue2.js +4 -2
- package/dist/{Select → packages/at-components/src/Select}/Select.multiple.vue.js +1 -1
- package/dist/{Select → packages/at-components/src/Select}/Select.single.vue.js +1 -1
- package/dist/{Tabs → packages/at-components/src/Tabs}/Tab/Tab.vue.js +1 -1
- package/dist/{Tabs → packages/at-components/src/Tabs}/Tabs.vue.js +1 -1
- package/dist/{Tipograph → packages/at-components/src/Tipograph}/Paragraph/Paragraph.vue.js +1 -1
- package/dist/{Tipograph → packages/at-components/src/Tipograph}/Title/Title.vue.js +1 -1
- package/dist/packages/at-components/src/Toggle/Toggle.vue.js +30 -0
- package/dist/{Toggle → packages/at-components/src/Toggle}/Toggle.vue2.js +13 -8
- package/dist/{Upload → packages/at-components/src/Upload}/Upload.vue.js +1 -1
- package/dist/packages/at-components/src/Upload/Upload.vue3.js +4 -0
- package/dist/packages/at-components/src/index.js +34 -0
- package/dist/style.css +1 -1
- package/package.json +6 -2
- package/storybook-static/185.127ee245.iframe.bundle.js +1 -0
- package/storybook-static/264.d0301f51.iframe.bundle.js +1 -0
- package/storybook-static/288.bada5911.iframe.bundle.js +1 -0
- package/storybook-static/352.57fdec72.iframe.bundle.js +1 -0
- package/storybook-static/364.f6abf738.iframe.bundle.js +1 -0
- package/storybook-static/433.55c6c988.iframe.bundle.js +1 -0
- package/storybook-static/503.919a9c54.iframe.bundle.js +411 -0
- package/storybook-static/{662.9228f06c.iframe.bundle.js.LICENSE.txt → 503.919a9c54.iframe.bundle.js.LICENSE.txt} +20 -0
- package/storybook-static/503.919a9c54.iframe.bundle.js.map +1 -0
- package/storybook-static/647.c5d3c77d.iframe.bundle.js +1 -0
- package/storybook-static/648.40aae8ac.iframe.bundle.js +1 -0
- package/storybook-static/{605.458f73a2.iframe.bundle.js → 71.c5a7a895.iframe.bundle.js} +4 -4
- package/storybook-static/71.c5a7a895.iframe.bundle.js.map +1 -0
- package/storybook-static/745.bdba4336.iframe.bundle.js +1 -0
- package/storybook-static/774.56edb488.iframe.bundle.js +1 -0
- package/storybook-static/799.527c0f8d.iframe.bundle.js +1 -0
- package/storybook-static/857.73d94321.iframe.bundle.js +1 -0
- package/storybook-static/878.a47a30a1.iframe.bundle.js +1 -0
- package/storybook-static/895.3432937c.iframe.bundle.js +1 -0
- package/storybook-static/897.7292af5c.iframe.bundle.js +2 -0
- package/storybook-static/897.7292af5c.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/930.b16e5e72.iframe.bundle.js +1 -0
- package/storybook-static/956.a6b327a7.iframe.bundle.js +134 -0
- package/storybook-static/956.a6b327a7.iframe.bundle.js.map +1 -0
- package/storybook-static/957.530b49b4.iframe.bundle.js +1 -0
- package/storybook-static/Avatar-Avatar-stories.4909423c.iframe.bundle.js +1 -0
- package/storybook-static/Button-Button-stories.c13172d3.iframe.bundle.js +1 -0
- package/storybook-static/CardWithInsights-CardWithInsights-stories.041a882c.iframe.bundle.js +1 -0
- package/storybook-static/Checkbox-Checkbox-stories.f1b62236.iframe.bundle.js +2 -0
- package/storybook-static/Checkbox-Checkbox-stories.f1b62236.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/DataTable-DataTable-stories.c2b51ae8.iframe.bundle.js +2 -0
- package/storybook-static/DataTable-DataTable-stories.c2b51ae8.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/DataTable-Tag-Tag-stories.22616950.iframe.bundle.js +2 -0
- package/storybook-static/DataTable-Tag-Tag-stories.22616950.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/Faq-Faq-stories.1ffafc5b.iframe.bundle.js +1 -0
- package/storybook-static/Icons-Icons-stories.ca14907d.iframe.bundle.js +1 -0
- package/storybook-static/Illustration-Illustration-stories.48222f1d.iframe.bundle.js +1 -0
- package/storybook-static/IllustrationGallery-IllustrationGallery-stories.a08315fd.iframe.bundle.js +1 -0
- package/storybook-static/Input-Input-stories.6a435e63.iframe.bundle.js +2 -0
- package/storybook-static/Input-Input-stories.6a435e63.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/Modal-Modal-stories.69bf2ead.iframe.bundle.js +1 -0
- package/storybook-static/Paginator-Paginator-stories.57ccb98b.iframe.bundle.js +2 -0
- package/storybook-static/Paginator-Paginator-stories.57ccb98b.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/ProgressBar-ProgressBar-stories.ebcb7961.iframe.bundle.js +1 -0
- package/storybook-static/Select-Select-multiple-stories.97b8ae08.iframe.bundle.js +2 -0
- package/storybook-static/Select-Select-multiple-stories.97b8ae08.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/Select-Select-single-stories.06662de7.iframe.bundle.js +2 -0
- package/storybook-static/Select-Select-single-stories.06662de7.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/Tabs-Tab-Tab-stories.4f79eca2.iframe.bundle.js +2 -0
- package/storybook-static/Tabs-Tab-Tab-stories.4f79eca2.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/Tabs-Tabs-stories.729e0e73.iframe.bundle.js +2 -0
- package/storybook-static/Tabs-Tabs-stories.729e0e73.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/Tipograph-Paragraph-Paragraph-stories.27ab9302.iframe.bundle.js +1 -0
- package/storybook-static/Tipograph-Title-Title-stories.46d54c19.iframe.bundle.js +1 -0
- package/storybook-static/Toggle-Toggle-stories.734f39e5.iframe.bundle.js +1 -0
- package/storybook-static/Upload-Upload-stories.4e22beef.iframe.bundle.js +1 -0
- package/storybook-static/iframe.html +4 -4
- package/storybook-static/index.html +2 -1
- package/storybook-static/index.json +1 -1
- package/storybook-static/main.fb4e53db.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/runtime~main.4fa4124a.iframe.bundle.js +1 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +4 -4
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +37 -88
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js +9 -24
- package/storybook-static/sb-addons/links-0/manager-bundle.js +1 -1
- package/storybook-static/sb-manager/WithTooltip-V3YHNWJZ-TRLNWEGW.js +1 -0
- package/storybook-static/sb-manager/chunk-4IYAVH3S.js +348 -0
- package/storybook-static/sb-manager/chunk-CXYKRFSY.js +9 -0
- package/storybook-static/sb-manager/chunk-LVLAH4SI.js +7 -0
- package/storybook-static/sb-manager/chunk-VFHDXWEA.js +406 -0
- package/storybook-static/sb-manager/chunk-ZEU7PDD3.js +1 -0
- package/storybook-static/sb-manager/{formatter-SWP5E3XI-FS7NNRKF.js → formatter-SWP5E3XI-7BGIK6BL.js} +1 -1
- package/storybook-static/sb-manager/globals-module-info.js +1 -0
- package/storybook-static/sb-manager/globals.js +1 -1
- package/storybook-static/sb-manager/index.js +1 -1
- package/storybook-static/sb-manager/runtime.js +1 -1
- package/storybook-static/sb-manager/syntaxhighlighter-B5GMVT5T-EA5ASEYD.js +1 -0
- package/storybook-static/sb-preview/globals.js +1 -1
- package/storybook-static/sb-preview/runtime.js +21 -21
- package/storybook-static/stories.json +1 -1
- package/dist/Checkbox/Checkbox.vue.js +0 -38
- package/dist/Checkbox/Checkbox.vue2.js +0 -83
- package/dist/DataTable/DataTable.vue.js +0 -93
- package/dist/DataTable/DataTable.vue2.js +0 -125
- package/dist/DataTable/Tag/Tag.d.ts +0 -19
- package/dist/DataTable/Tag/Tag.vue.js +0 -24
- package/dist/DataTable/Tag/Tag.vue2.js +0 -34
- package/dist/DataTable/Tag/imgs/disabled.svg.js +0 -4
- package/dist/DataTable/Tag/imgs/error.svg.js +0 -4
- package/dist/DataTable/Tag/imgs/info.svg.js +0 -4
- package/dist/DataTable/Tag/imgs/success.svg.js +0 -4
- package/dist/DataTable/Tag/imgs/warning.svg.js +0 -4
- package/dist/DataTable/index.js +0 -13
- package/dist/Illustration/Illustration.vue3.js +0 -4
- package/dist/Toggle/Toggle.vue.js +0 -29
- package/dist/index.js +0 -32
- package/storybook-static/102.9ac9f0be.iframe.bundle.js +0 -1
- package/storybook-static/108.dad6e100.iframe.bundle.js +0 -1
- package/storybook-static/127.1402ec38.iframe.bundle.js +0 -1
- package/storybook-static/128.90fe14f7.iframe.bundle.js +0 -1
- package/storybook-static/20.d958576d.iframe.bundle.js +0 -1
- package/storybook-static/420.28054ca9.iframe.bundle.js +0 -1
- package/storybook-static/471.1b09f266.iframe.bundle.js +0 -1
- package/storybook-static/518.63007afe.iframe.bundle.js +0 -1
- package/storybook-static/605.458f73a2.iframe.bundle.js.map +0 -1
- package/storybook-static/619.fbf85f04.iframe.bundle.js +0 -134
- package/storybook-static/619.fbf85f04.iframe.bundle.js.map +0 -1
- package/storybook-static/662.9228f06c.iframe.bundle.js +0 -402
- package/storybook-static/662.9228f06c.iframe.bundle.js.map +0 -1
- package/storybook-static/673.1811fe7b.iframe.bundle.js +0 -1
- package/storybook-static/674.0834b7e4.iframe.bundle.js +0 -1
- package/storybook-static/716.ae2cc9dc.iframe.bundle.js +0 -1
- package/storybook-static/73.7de0c878.iframe.bundle.js +0 -1
- package/storybook-static/749.294b564b.iframe.bundle.js +0 -1
- package/storybook-static/796.c14ffc95.iframe.bundle.js +0 -1
- package/storybook-static/814.81008212.iframe.bundle.js +0 -1
- package/storybook-static/998.2419ed7b.iframe.bundle.js +0 -1
- package/storybook-static/Avatar-Avatar-stories.b21d37b2.iframe.bundle.js +0 -1
- package/storybook-static/Button-Button-stories.07b0a669.iframe.bundle.js +0 -1
- package/storybook-static/CardWithInsights-CardWithInsights-stories.23654c7d.iframe.bundle.js +0 -1
- package/storybook-static/Checkbox-Checkbox-stories.d3860e9f.iframe.bundle.js +0 -1
- package/storybook-static/DataTable-DataTable-stories.39b0d899.iframe.bundle.js +0 -1
- package/storybook-static/DataTable-Tag-Tag-stories.e811f9f3.iframe.bundle.js +0 -1
- package/storybook-static/Faq-Faq-stories.4634ceba.iframe.bundle.js +0 -1
- package/storybook-static/Icons-Icons-stories.85725ca8.iframe.bundle.js +0 -1
- package/storybook-static/Illustration-Illustration-stories.c9d71835.iframe.bundle.js +0 -1
- package/storybook-static/IllustrationGallery-IllustrationGallery-stories.e3f79342.iframe.bundle.js +0 -1
- package/storybook-static/Input-Input-stories.45e0b6a1.iframe.bundle.js +0 -1
- package/storybook-static/Modal-Modal-stories.ae04830a.iframe.bundle.js +0 -1
- package/storybook-static/Paginator-Paginator-stories.87896c41.iframe.bundle.js +0 -1
- package/storybook-static/ProgressBar-ProgressBar-stories.d24e4b35.iframe.bundle.js +0 -1
- package/storybook-static/Select-Select-multiple-stories.3e084410.iframe.bundle.js +0 -1
- package/storybook-static/Select-Select-single-stories.dd753d85.iframe.bundle.js +0 -1
- package/storybook-static/Tabs-Tab-Tab-stories.1e52249f.iframe.bundle.js +0 -1
- package/storybook-static/Tabs-Tabs-stories.bb073f21.iframe.bundle.js +0 -1
- package/storybook-static/Tipograph-Paragraph-Paragraph-stories.bd3f9e7e.iframe.bundle.js +0 -1
- package/storybook-static/Tipograph-Title-Title-stories.98dbb979.iframe.bundle.js +0 -1
- package/storybook-static/Toggle-Toggle-stories.20a09b27.iframe.bundle.js +0 -1
- package/storybook-static/Upload-Upload-stories.b2a01d98.iframe.bundle.js +0 -1
- package/storybook-static/main.557e9315.iframe.bundle.js +0 -1
- package/storybook-static/runtime~main.4304985c.iframe.bundle.js +0 -1
- package/storybook-static/sb-manager/GlobalScrollAreaStyles-UY5SB7EJ-BKTFUTA6.js +0 -7
- package/storybook-static/sb-manager/OverlayScrollbars-GZGLA7DL-YJ2Z3IBE.js +0 -1
- package/storybook-static/sb-manager/WithTooltip-J57HCPYA-3VOMFVVS.js +0 -1
- package/storybook-static/sb-manager/chunk-3J6GS6FI.js +0 -1
- package/storybook-static/sb-manager/chunk-L4KFTAB4.js +0 -408
- package/storybook-static/sb-manager/chunk-NBCGHFLK.js +0 -136
- package/storybook-static/sb-manager/chunk-O2ZUMB77.js +0 -7
- package/storybook-static/sb-manager/chunk-QMHPSTMR.js +0 -15
- package/storybook-static/sb-manager/chunk-QPL63VNK.js +0 -1
- package/storybook-static/sb-manager/chunk-RKFFWI2D.js +0 -1
- package/storybook-static/sb-manager/chunk-SPUAGIB2.js +0 -207
- package/storybook-static/sb-manager/syntaxhighlighter-PONEFOSF-PLQPOLN2.js +0 -1
- /package/dist/{CardWithInsights/CardWithInsights.vue4.js → packages/at-components/src/Accordion/Accordion.vue3.js} +0 -0
- /package/dist/{Avatar → packages/at-components/src/Avatar}/Avatar.vue2.js +0 -0
- /package/dist/{Avatar → packages/at-components/src/Avatar}/Avatar.vue3.js +0 -0
- /package/dist/{Button → packages/at-components/src/Button}/Button.vue2.js +0 -0
- /package/dist/{Button → packages/at-components/src/Button}/Button.vue3.js +0 -0
- /package/dist/{CardWithInsights → packages/at-components/src/CardWithInsights}/CardWithInsights.vue2.js +0 -0
- /package/dist/{CardWithInsights → packages/at-components/src/CardWithInsights}/CardWithInsights.vue3.js +0 -0
- /package/dist/{DataTable/Column/Column.vue3.js → packages/at-components/src/CardWithInsights/CardWithInsights.vue4.js} +0 -0
- /package/dist/{Checkbox → packages/at-components/src/Checkbox}/Checkbox.vue3.js +0 -0
- /package/dist/{Checkbox → packages/at-components/src/Checkbox}/img/checkmarck.svg.js +0 -0
- /package/dist/{DataTable → packages/at-components/src/DataTable}/Column/Column.vue2.js +0 -0
- /package/dist/{DataTable/Tag/Tag.vue3.js → packages/at-components/src/DataTable/Column/Column.vue3.js} +0 -0
- /package/dist/{DataTable → packages/at-components/src/DataTable}/Column/imgs/filter.svg.js +0 -0
- /package/dist/{DataTable → packages/at-components/src/DataTable}/Counters/Counters.vue2.js +0 -0
- /package/dist/{DataTable → packages/at-components/src/DataTable}/Counters/Counters.vue3.js +0 -0
- /package/dist/{DataTable → packages/at-components/src/DataTable}/Counters/imgs/close.svg.js +0 -0
- /package/dist/{DataTable → packages/at-components/src/DataTable}/DataTable.vue3.js +0 -0
- /package/dist/{Faq → packages/at-components/src/Faq}/Faq.vue2.js +0 -0
- /package/dist/{Faq → packages/at-components/src/Faq}/Faq.vue3.js +0 -0
- /package/dist/{Faq → packages/at-components/src/Faq}/Faq.vue4.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/Illustration.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/Illustration.vue2.js +0 -0
- /package/dist/{Tabs/Tab/Tab.vue3.js → packages/at-components/src/Illustration/Illustration.vue3.js} +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/renovabio-illustrations/biomass.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/renovabio-illustrations/volume.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/add-file.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/cloud-connection.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/cloud-download.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/cloud-upload.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/corrupted-file.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/empty-box.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/empty-folder-2.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/empty-folder.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/empty.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/error-illustration.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/file-backup-2.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/file-backup.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/filtering-upload.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/flight.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/fly.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/movies.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/multimedia.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/notification-bell.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/page-2.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/page.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/photos.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/recycle-bin.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/rocket-launch.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/signal.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/system-images/wrong.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/advanced-analysis.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/agriculture.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/alert-center.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/area.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/at-insights.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/conservation-unit.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/credit.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/deforestation.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/distance-proximity-rivers.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/estimated-productivity-penalty.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/extract.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/farm.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/geographical-consultation-municipalities.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/gix.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/insurance.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/land-appreciation.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/lockdown.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/map.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/pasture.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/rating-2.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/rating.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/recurrence.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/refrigerators.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/settings.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/socio-environmental-analysis.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/soil-use.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/storm.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/territory-details.svg.js +0 -0
- /package/dist/{Illustration → packages/at-components/src/Illustration}/images/tools-images/timeline.svg.js +0 -0
- /package/dist/{Input → packages/at-components/src/Input}/Input.core.vue2.js +0 -0
- /package/dist/{Input → packages/at-components/src/Input}/Input.core.vue3.js +0 -0
- /package/dist/{Input → packages/at-components/src/Input}/imgs/error.svg.js +0 -0
- /package/dist/{Input → packages/at-components/src/Input}/index.js +0 -0
- /package/dist/{Modal → packages/at-components/src/Modal}/Modal.vue3.js +0 -0
- /package/dist/{Modal → packages/at-components/src/Modal}/images/cross.svg.js +0 -0
- /package/dist/{Paginator → packages/at-components/src/Paginator}/Paginator.vue2.js +0 -0
- /package/dist/{Paginator → packages/at-components/src/Paginator}/Paginator.vue3.js +0 -0
- /package/dist/{Paginator → packages/at-components/src/Paginator}/imgs/double-left-arrow.svg.js +0 -0
- /package/dist/{Paginator → packages/at-components/src/Paginator}/imgs/double-right-arrow.svg.js +0 -0
- /package/dist/{Paginator → packages/at-components/src/Paginator}/imgs/left-arrow.svg.js +0 -0
- /package/dist/{Paginator → packages/at-components/src/Paginator}/imgs/right-arrow.svg.js +0 -0
- /package/dist/{ProgressBar → packages/at-components/src/ProgressBar}/ProgressBar.vue2.js +0 -0
- /package/dist/{ProgressBar → packages/at-components/src/ProgressBar}/ProgressBar.vue3.js +0 -0
- /package/dist/{Select → packages/at-components/src/Select}/Item/Item.vue2.js +0 -0
- /package/dist/{Select → packages/at-components/src/Select}/Item/Item.vue3.js +0 -0
- /package/dist/{Select → packages/at-components/src/Select}/Select.multiple.vue2.js +0 -0
- /package/dist/{Select → packages/at-components/src/Select}/Select.multiple.vue3.js +0 -0
- /package/dist/{Select → packages/at-components/src/Select}/Select.single.vue2.js +0 -0
- /package/dist/{Select → packages/at-components/src/Select}/Select.single.vue3.js +0 -0
- /package/dist/{Select → packages/at-components/src/Select}/imgs/indicator.svg.js +0 -0
- /package/dist/{Select → packages/at-components/src/Select}/index.js +0 -0
- /package/dist/{Tabs → packages/at-components/src/Tabs}/Tab/Tab.vue2.js +0 -0
- /package/dist/{Upload/Upload.vue3.js → packages/at-components/src/Tabs/Tab/Tab.vue3.js} +0 -0
- /package/dist/{Tabs → packages/at-components/src/Tabs}/Tabs.vue2.js +0 -0
- /package/dist/{Tabs → packages/at-components/src/Tabs}/Tabs.vue3.js +0 -0
- /package/dist/{Tabs → packages/at-components/src/Tabs}/imgs/check.svg.js +0 -0
- /package/dist/{Tabs → packages/at-components/src/Tabs}/imgs/warning.svg.js +0 -0
- /package/dist/{Tipograph → packages/at-components/src/Tipograph}/Paragraph/Paragraph.vue2.js +0 -0
- /package/dist/{Tipograph → packages/at-components/src/Tipograph}/Paragraph/Paragraph.vue3.js +0 -0
- /package/dist/{Tipograph → packages/at-components/src/Tipograph}/Title/Title.vue2.js +0 -0
- /package/dist/{Tipograph → packages/at-components/src/Tipograph}/Title/Title.vue3.js +0 -0
- /package/dist/{Tipograph → packages/at-components/src/Tipograph}/index.js +0 -0
- /package/dist/{Toggle → packages/at-components/src/Toggle}/Toggle.vue3.js +0 -0
- /package/dist/{Upload → packages/at-components/src/Upload}/Upload.vue2.js +0 -0
- /package/storybook-static/{619.fbf85f04.iframe.bundle.js.LICENSE.txt → 956.a6b327a7.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/static/media/{checkmarck.9932a0d7.svg → src/Checkbox/img/checkmarck.svg} +0 -0
- /package/storybook-static/static/media/{filter.0268b8e0.svg → src/DataTable/Column/imgs/filter.svg} +0 -0
- /package/storybook-static/static/media/{close.74fb5e7c.svg → src/DataTable/Counters/imgs/close.svg} +0 -0
- /package/storybook-static/static/media/{disabled.4fbc31ab.svg → src/DataTable/Tag/imgs/disabled.svg} +0 -0
- /package/storybook-static/static/media/{error.934dd460.svg → src/DataTable/Tag/imgs/error.svg} +0 -0
- /package/storybook-static/static/media/{info.f0b1a71f.svg → src/DataTable/Tag/imgs/info.svg} +0 -0
- /package/storybook-static/static/media/{success.c306802d.svg → src/DataTable/Tag/imgs/success.svg} +0 -0
- /package/storybook-static/static/media/{warning.7e14a595.svg → src/DataTable/Tag/imgs/warning.svg} +0 -0
- /package/storybook-static/static/media/{biomass.ba40f1f8.svg → src/Illustration/images/renovabio-illustrations/biomass.svg} +0 -0
- /package/storybook-static/static/media/{volume.99352757.svg → src/Illustration/images/renovabio-illustrations/volume.svg} +0 -0
- /package/storybook-static/static/media/{add-file.36431641.svg → src/Illustration/images/system-images/add-file.svg} +0 -0
- /package/storybook-static/static/media/{cloud-connection.fd1da3dc.svg → src/Illustration/images/system-images/cloud-connection.svg} +0 -0
- /package/storybook-static/static/media/{cloud-download.fbd37e78.svg → src/Illustration/images/system-images/cloud-download.svg} +0 -0
- /package/storybook-static/static/media/{cloud-upload.78d9d692.svg → src/Illustration/images/system-images/cloud-upload.svg} +0 -0
- /package/storybook-static/static/media/{corrupted-file.d3c44b90.svg → src/Illustration/images/system-images/corrupted-file.svg} +0 -0
- /package/storybook-static/static/media/{empty-box.7e0e0a14.svg → src/Illustration/images/system-images/empty-box.svg} +0 -0
- /package/storybook-static/static/media/{empty-folder-2.8361a0e2.svg → src/Illustration/images/system-images/empty-folder-2.svg} +0 -0
- /package/storybook-static/static/media/{empty-folder.1b301dc4.svg → src/Illustration/images/system-images/empty-folder.svg} +0 -0
- /package/storybook-static/static/media/{empty.19d2d9c9.svg → src/Illustration/images/system-images/empty.svg} +0 -0
- /package/storybook-static/static/media/{error-illustration.f8b93fea.svg → src/Illustration/images/system-images/error-illustration.svg} +0 -0
- /package/storybook-static/static/media/{file-backup-2.d253f4ac.svg → src/Illustration/images/system-images/file-backup-2.svg} +0 -0
- /package/storybook-static/static/media/{file-backup.3be1d1d2.svg → src/Illustration/images/system-images/file-backup.svg} +0 -0
- /package/storybook-static/static/media/{filtering-upload.a02a1543.svg → src/Illustration/images/system-images/filtering-upload.svg} +0 -0
- /package/storybook-static/static/media/{flight.f6de9af3.svg → src/Illustration/images/system-images/flight.svg} +0 -0
- /package/storybook-static/static/media/{fly.6e02c68a.svg → src/Illustration/images/system-images/fly.svg} +0 -0
- /package/storybook-static/static/media/{movies.bedabbf3.svg → src/Illustration/images/system-images/movies.svg} +0 -0
- /package/storybook-static/static/media/{multimedia.324a6077.svg → src/Illustration/images/system-images/multimedia.svg} +0 -0
- /package/storybook-static/static/media/{notification-bell.1209a2b4.svg → src/Illustration/images/system-images/notification-bell.svg} +0 -0
- /package/storybook-static/static/media/{page-2.01eec72d.svg → src/Illustration/images/system-images/page-2.svg} +0 -0
- /package/storybook-static/static/media/{page.c59e2f3d.svg → src/Illustration/images/system-images/page.svg} +0 -0
- /package/storybook-static/static/media/{photos.0c7a09d3.svg → src/Illustration/images/system-images/photos.svg} +0 -0
- /package/storybook-static/static/media/{recycle-bin.cc5f2e74.svg → src/Illustration/images/system-images/recycle-bin.svg} +0 -0
- /package/storybook-static/static/media/{rocket-launch.1aad437e.svg → src/Illustration/images/system-images/rocket-launch.svg} +0 -0
- /package/storybook-static/static/media/{signal.e82c378c.svg → src/Illustration/images/system-images/signal.svg} +0 -0
- /package/storybook-static/static/media/{wrong.9ae4f2e0.svg → src/Illustration/images/system-images/wrong.svg} +0 -0
- /package/storybook-static/static/media/{advanced-analysis.543a3373.svg → src/Illustration/images/tools-images/advanced-analysis.svg} +0 -0
- /package/storybook-static/static/media/{agriculture.163ebccb.svg → src/Illustration/images/tools-images/agriculture.svg} +0 -0
- /package/storybook-static/static/media/{alert-center.13bb8881.svg → src/Illustration/images/tools-images/alert-center.svg} +0 -0
- /package/storybook-static/static/media/{area.9ac3e69d.svg → src/Illustration/images/tools-images/area.svg} +0 -0
- /package/storybook-static/static/media/{at-insights.70be24e9.svg → src/Illustration/images/tools-images/at-insights.svg} +0 -0
- /package/storybook-static/static/media/{conservation-unit.c738b0d9.svg → src/Illustration/images/tools-images/conservation-unit.svg} +0 -0
- /package/storybook-static/static/media/{credit.4c4a9f23.svg → src/Illustration/images/tools-images/credit.svg} +0 -0
- /package/storybook-static/static/media/{deforestation.2429d1e3.svg → src/Illustration/images/tools-images/deforestation.svg} +0 -0
- /package/storybook-static/static/media/{distance-proximity-rivers.15e21a6b.svg → src/Illustration/images/tools-images/distance-proximity-rivers.svg} +0 -0
- /package/storybook-static/static/media/{estimated-productivity-penalty.5a2b723f.svg → src/Illustration/images/tools-images/estimated-productivity-penalty.svg} +0 -0
- /package/storybook-static/static/media/{extract.72c95f7f.svg → src/Illustration/images/tools-images/extract.svg} +0 -0
- /package/storybook-static/static/media/{farm.b21569c4.svg → src/Illustration/images/tools-images/farm.svg} +0 -0
- /package/storybook-static/static/media/{geographical-consultation-municipalities.0a3d710e.svg → src/Illustration/images/tools-images/geographical-consultation-municipalities.svg} +0 -0
- /package/storybook-static/static/media/{gix.bacd590c.svg → src/Illustration/images/tools-images/gix.svg} +0 -0
- /package/storybook-static/static/media/{insurance.14f05495.svg → src/Illustration/images/tools-images/insurance.svg} +0 -0
- /package/storybook-static/static/media/{land-appreciation.885bc839.svg → src/Illustration/images/tools-images/land-appreciation.svg} +0 -0
- /package/storybook-static/static/media/{lockdown.c6992804.svg → src/Illustration/images/tools-images/lockdown.svg} +0 -0
- /package/storybook-static/static/media/{map.9e9abcd0.svg → src/Illustration/images/tools-images/map.svg} +0 -0
- /package/storybook-static/static/media/{pasture.39680219.svg → src/Illustration/images/tools-images/pasture.svg} +0 -0
- /package/storybook-static/static/media/{rating-2.a518ca8f.svg → src/Illustration/images/tools-images/rating-2.svg} +0 -0
- /package/storybook-static/static/media/{rating.936b1b77.svg → src/Illustration/images/tools-images/rating.svg} +0 -0
- /package/storybook-static/static/media/{recurrence.5371e92b.svg → src/Illustration/images/tools-images/recurrence.svg} +0 -0
- /package/storybook-static/static/media/{refrigerators.c98b8833.svg → src/Illustration/images/tools-images/refrigerators.svg} +0 -0
- /package/storybook-static/static/media/{settings.c5b55264.svg → src/Illustration/images/tools-images/settings.svg} +0 -0
- /package/storybook-static/static/media/{socio-environmental-analysis.b2653ac9.svg → src/Illustration/images/tools-images/socio-environmental-analysis.svg} +0 -0
- /package/storybook-static/static/media/{soil-use.8b6db457.svg → src/Illustration/images/tools-images/soil-use.svg} +0 -0
- /package/storybook-static/static/media/{storm.91e86899.svg → src/Illustration/images/tools-images/storm.svg} +0 -0
- /package/storybook-static/static/media/{territory-details.1c8e1294.svg → src/Illustration/images/tools-images/territory-details.svg} +0 -0
- /package/storybook-static/static/media/{timeline.fb362e8f.svg → src/Illustration/images/tools-images/timeline.svg} +0 -0
- /package/storybook-static/static/media/{error.f04b33e9.svg → src/Input/imgs/error.svg} +0 -0
- /package/storybook-static/static/media/{cross.3807b5ff.svg → src/Modal/images/cross.svg} +0 -0
- /package/storybook-static/static/media/{double-left-arrow.6a90d667.svg → src/Paginator/imgs/double-left-arrow.svg} +0 -0
- /package/storybook-static/static/media/{double-right-arrow.879b3cc9.svg → src/Paginator/imgs/double-right-arrow.svg} +0 -0
- /package/storybook-static/static/media/{left-arrow.5cf50151.svg → src/Paginator/imgs/left-arrow.svg} +0 -0
- /package/storybook-static/static/media/{right-arrow.406ffc39.svg → src/Paginator/imgs/right-arrow.svg} +0 -0
- /package/storybook-static/static/media/{indicator.41526843.svg → src/Select/imgs/indicator.svg} +0 -0
- /package/storybook-static/static/media/{check.c2eccee6.svg → src/Tabs/imgs/check.svg} +0 -0
- /package/storybook-static/static/media/{warning.32a47f98.svg → src/Tabs/imgs/warning.svg} +0 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export interface AtAccordionProps {
|
|
2
|
+
isInformative: boolean;
|
|
3
|
+
informativeType: "default" | "success" | "alert" | "error";
|
|
4
|
+
informativeTitle: string;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import("vue").DefineComponent<{
|
|
7
|
+
isInformative: {
|
|
8
|
+
required: true;
|
|
9
|
+
type: () => AtAccordionProps["isInformative"];
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
informativeType: {
|
|
13
|
+
required: false;
|
|
14
|
+
type: () => AtAccordionProps["informativeType"];
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
informativeTitle: {
|
|
18
|
+
required: false;
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
}, {
|
|
23
|
+
isOpen: import("vue").Ref<boolean>;
|
|
24
|
+
buttonRef: import("vue").Ref<HTMLButtonElement | null>;
|
|
25
|
+
onClick: () => void;
|
|
26
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:isOpen"[], "update:isOpen", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
isInformative: {
|
|
28
|
+
required: true;
|
|
29
|
+
type: () => AtAccordionProps["isInformative"];
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
informativeType: {
|
|
33
|
+
required: false;
|
|
34
|
+
type: () => AtAccordionProps["informativeType"];
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
informativeTitle: {
|
|
38
|
+
required: false;
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
}>> & {
|
|
43
|
+
"onUpdate:isOpen"?: ((...args: any[]) => any) | undefined;
|
|
44
|
+
}, {
|
|
45
|
+
isInformative: boolean;
|
|
46
|
+
informativeType: "default" | "success" | "alert" | "error";
|
|
47
|
+
informativeTitle: string;
|
|
48
|
+
}, {}>;
|
|
49
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { type AtAccordionProps, default as AtAccordion } from "./Accordion";
|
package/dist/Avatar/Avatar.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
slotSize: import("vue").ComputedRef<string>;
|
|
33
33
|
fontSize: import("vue").ComputedRef<string>;
|
|
34
34
|
text: string;
|
|
35
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
35
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
36
|
imgBase64: {
|
|
37
37
|
required: false;
|
|
38
38
|
type: StringConstructor;
|
|
@@ -58,9 +58,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
58
|
validator: (value: string) => boolean;
|
|
59
59
|
};
|
|
60
60
|
}>>, {
|
|
61
|
+
size: "P" | "M" | "G";
|
|
61
62
|
imgBase64: string;
|
|
62
63
|
withIcon: boolean;
|
|
63
64
|
username: string;
|
|
64
|
-
size: "G" | "M" | "P";
|
|
65
65
|
}, {}>;
|
|
66
66
|
export default _default;
|
package/dist/Button/Button.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
75
75
|
leftIconSlotEl: {
|
|
76
76
|
value: HTMLElement | null;
|
|
77
77
|
};
|
|
78
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
78
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
79
79
|
isToggle: {
|
|
80
80
|
type: BooleanConstructor;
|
|
81
81
|
default: boolean;
|
|
@@ -1,31 +1,38 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
1
2
|
export interface CheckboxProps {
|
|
2
|
-
value
|
|
3
|
+
value: boolean | Array<string>;
|
|
4
|
+
val?: string;
|
|
3
5
|
disabled: boolean;
|
|
4
|
-
size:
|
|
6
|
+
size: '12' | '16' | '20' | '24' | '28';
|
|
5
7
|
labelledby: string;
|
|
6
8
|
}
|
|
7
9
|
declare const _default: import("vue").DefineComponent<{
|
|
8
10
|
disabled: {
|
|
9
11
|
required: false;
|
|
10
|
-
type:
|
|
12
|
+
type: PropType<boolean>;
|
|
11
13
|
default: boolean;
|
|
12
14
|
validator: (value: boolean) => boolean;
|
|
13
15
|
};
|
|
14
|
-
|
|
16
|
+
modelValue: {
|
|
15
17
|
required: false;
|
|
16
|
-
type:
|
|
17
|
-
default:
|
|
18
|
-
validator: (value:
|
|
18
|
+
type: PropType<boolean | string[]>;
|
|
19
|
+
default: undefined;
|
|
20
|
+
validator: (value: CheckboxProps['value']) => boolean;
|
|
21
|
+
};
|
|
22
|
+
val: {
|
|
23
|
+
required: false;
|
|
24
|
+
type: PropType<string | undefined>;
|
|
25
|
+
default: undefined;
|
|
19
26
|
};
|
|
20
27
|
size: {
|
|
21
28
|
required: false;
|
|
22
|
-
type:
|
|
29
|
+
type: PropType<"12" | "16" | "20" | "24" | "28">;
|
|
23
30
|
default: string;
|
|
24
31
|
validator: (value: string) => boolean;
|
|
25
32
|
};
|
|
26
33
|
labelledby: {
|
|
27
34
|
required: false;
|
|
28
|
-
type:
|
|
35
|
+
type: PropType<string>;
|
|
29
36
|
default: string;
|
|
30
37
|
validator: (value: string) => boolean;
|
|
31
38
|
};
|
|
@@ -34,40 +41,47 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
41
|
buttonRef: import("vue").Ref<HTMLButtonElement | null>;
|
|
35
42
|
inputRef: import("vue").Ref<HTMLInputElement | null>;
|
|
36
43
|
computedSize: import("vue").ComputedRef<string>;
|
|
37
|
-
|
|
38
|
-
onClick: () => void;
|
|
44
|
+
onClick: (event: MouseEvent) => void;
|
|
39
45
|
borderRadius: import("vue").ComputedRef<string>;
|
|
40
|
-
|
|
46
|
+
isCheckedValue: import("vue").ComputedRef<boolean>;
|
|
47
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:modelValue")[], "click" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
48
|
disabled: {
|
|
42
49
|
required: false;
|
|
43
|
-
type:
|
|
50
|
+
type: PropType<boolean>;
|
|
44
51
|
default: boolean;
|
|
45
52
|
validator: (value: boolean) => boolean;
|
|
46
53
|
};
|
|
47
|
-
|
|
54
|
+
modelValue: {
|
|
48
55
|
required: false;
|
|
49
|
-
type:
|
|
50
|
-
default:
|
|
51
|
-
validator: (value:
|
|
56
|
+
type: PropType<boolean | string[]>;
|
|
57
|
+
default: undefined;
|
|
58
|
+
validator: (value: CheckboxProps['value']) => boolean;
|
|
59
|
+
};
|
|
60
|
+
val: {
|
|
61
|
+
required: false;
|
|
62
|
+
type: PropType<string | undefined>;
|
|
63
|
+
default: undefined;
|
|
52
64
|
};
|
|
53
65
|
size: {
|
|
54
66
|
required: false;
|
|
55
|
-
type:
|
|
67
|
+
type: PropType<"12" | "16" | "20" | "24" | "28">;
|
|
56
68
|
default: string;
|
|
57
69
|
validator: (value: string) => boolean;
|
|
58
70
|
};
|
|
59
71
|
labelledby: {
|
|
60
72
|
required: false;
|
|
61
|
-
type:
|
|
73
|
+
type: PropType<string>;
|
|
62
74
|
default: string;
|
|
63
75
|
validator: (value: string) => boolean;
|
|
64
76
|
};
|
|
65
77
|
}>> & {
|
|
66
78
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
79
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
80
|
}, {
|
|
68
81
|
size: "12" | "16" | "20" | "24" | "28";
|
|
69
82
|
disabled: boolean;
|
|
70
|
-
|
|
83
|
+
val: string | undefined;
|
|
71
84
|
labelledby: string;
|
|
85
|
+
modelValue: boolean | string[];
|
|
72
86
|
}, {}>;
|
|
73
87
|
export default _default;
|
|
@@ -17,7 +17,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
filterSvg: string;
|
|
18
18
|
orientation: Ref<"bottom" | "top">;
|
|
19
19
|
onClick: () => void;
|
|
20
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
20
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
21
|
field: {
|
|
22
22
|
type: StringConstructor;
|
|
23
23
|
required: true;
|
|
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
28
|
closeIcon: string;
|
|
29
29
|
checkIfContainerIsWithinViewport: () => void;
|
|
30
30
|
onDispatchEvent: (event: any) => void;
|
|
31
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
31
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
32
|
columns: {
|
|
33
33
|
type: () => CountersProps["columns"];
|
|
34
34
|
required: true;
|
|
@@ -58,7 +58,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
58
|
field: string;
|
|
59
59
|
value: string | number | boolean;
|
|
60
60
|
}) => boolean;
|
|
61
|
-
}, string, import("vue").
|
|
61
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
62
62
|
value: {
|
|
63
63
|
type: PropType<TableData>;
|
|
64
64
|
required: true;
|
|
@@ -59,7 +59,7 @@ export declare const AtDataTable: {
|
|
|
59
59
|
field: string;
|
|
60
60
|
value: string | number | boolean;
|
|
61
61
|
}) => boolean;
|
|
62
|
-
}, string, import("vue").
|
|
62
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
63
|
value: {
|
|
64
64
|
type: import("vue").PropType<{
|
|
65
65
|
[key: string]: unknown;
|
|
@@ -133,7 +133,7 @@ export declare const AtDataTable: {
|
|
|
133
133
|
filterSvg: string;
|
|
134
134
|
orientation: import("vue").Ref<"bottom" | "top">;
|
|
135
135
|
onClick: () => void;
|
|
136
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
136
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
137
137
|
field: {
|
|
138
138
|
type: StringConstructor;
|
|
139
139
|
required: true;
|
|
@@ -149,23 +149,6 @@ export declare const AtDataTable: {
|
|
|
149
149
|
}>>, {
|
|
150
150
|
withMaxMinFilter: boolean;
|
|
151
151
|
}, {}>;
|
|
152
|
-
Tag: import("vue").DefineComponent<{
|
|
153
|
-
type: {
|
|
154
|
-
type: import("vue").PropType<"disabled" | "error" | "success" | "warning" | "info">;
|
|
155
|
-
required: true;
|
|
156
|
-
default: string;
|
|
157
|
-
};
|
|
158
|
-
}, {
|
|
159
|
-
icon: string;
|
|
160
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
161
|
-
type: {
|
|
162
|
-
type: import("vue").PropType<"disabled" | "error" | "success" | "warning" | "info">;
|
|
163
|
-
required: true;
|
|
164
|
-
default: string;
|
|
165
|
-
};
|
|
166
|
-
}>>, {
|
|
167
|
-
type: "disabled" | "error" | "success" | "warning" | "info";
|
|
168
|
-
}, {}>;
|
|
169
152
|
Counters: import("vue").DefineComponent<{
|
|
170
153
|
columns: {
|
|
171
154
|
type: () => {
|
|
@@ -192,7 +175,7 @@ export declare const AtDataTable: {
|
|
|
192
175
|
closeIcon: string;
|
|
193
176
|
checkIfContainerIsWithinViewport: () => void;
|
|
194
177
|
onDispatchEvent: (event: any) => void;
|
|
195
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
178
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
196
179
|
columns: {
|
|
197
180
|
type: () => {
|
|
198
181
|
label: string;
|