@policystudio/policy-studio-ui-vue 1.0.19 → 1.0.20
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/.eslintrc.js +1 -2
- package/.storybook/main.js +3 -3
- package/.storybook/preview.js +1 -1
- package/README.md +8 -0
- package/babel.config.js +3 -0
- package/backup-package-lock.json +37194 -0
- package/dist/css/psui_styles.css +31 -50
- package/package.json +28 -22
- package/src/assets/scss/base.scss +1 -28
- package/src/components/accordion/PsAccordion.vue +9 -1
- package/src/components/accordion/PsAccordionItem.vue +1 -1
- package/src/components/buttons/PsButton.vue +32 -12
- package/src/components/chips/PsChips.vue +46 -28
- package/src/components/controls/PsDraggable.vue +27 -2
- package/src/components/controls/PsRadioButton.vue +63 -38
- package/src/components/controls/PsSwitch.vue +75 -76
- package/src/components/datatable/PsDataTable.vue +25 -29
- package/src/components/datatable/PsDataTableItem.vue +2 -2
- package/src/components/tooltip/PsDialogTooltip.vue +79 -0
- package/src/components/tooltip/PsRichTooltip.vue +38 -0
- package/src/components/tooltip/PsTooltip.vue +120 -0
- package/src/components/ui/PsIcon.vue +87 -24
- package/src/index.js +15 -1
- package/src/stories/Accordion.stories.js +2 -2
- package/src/stories/Button.stories.js +11 -11
- package/src/stories/Checkbox.stories.js +6 -6
- package/src/stories/Chips.stories.js +7 -7
- package/src/stories/Colors.stories.mdx +35 -35
- package/src/stories/Datatable.stories.js +15 -8
- package/src/stories/Dialog.stories.js +9 -9
- package/src/stories/Draggable.stories.js +24 -0
- package/src/stories/Dropdown.stories.js +5 -5
- package/src/stories/Input.stories.js +10 -10
- package/src/stories/RadioButton.stories.js +14 -14
- package/src/stories/Slider.stories.js +9 -9
- package/src/stories/Swith.stories.js +10 -10
- package/src/stories/TabHeader.stories.js +9 -9
- package/src/stories/Toast.stories.js +13 -13
- package/src/stories/Toggle.stories.js +5 -5
- package/src/stories/Tooltip.stories.js +113 -0
- package/src/util/GeneralFunctions.js +8 -8
- package/src/util/imageLoader.js +50 -0
- package/tailwind.config.js +1 -0
- package/src/assets/scss/tailwind.css +0 -70643
- package/src/assets/scss/tailwind.scss +0 -61088
package/.eslintrc.js
CHANGED
|
@@ -5,11 +5,10 @@ module.exports = {
|
|
|
5
5
|
},
|
|
6
6
|
extends: [
|
|
7
7
|
'plugin:vue/essential',
|
|
8
|
-
'plugin:storybook/recommended',
|
|
9
8
|
'eslint:recommended',
|
|
10
9
|
],
|
|
11
10
|
parserOptions: {
|
|
12
|
-
parser: '
|
|
11
|
+
parser: 'babel-eslint',
|
|
13
12
|
requireConfigFile: false,
|
|
14
13
|
},
|
|
15
14
|
rules: {
|
package/.storybook/main.js
CHANGED
package/.storybook/preview.js
CHANGED
package/README.md
CHANGED
|
@@ -27,3 +27,11 @@ Add in your css file
|
|
|
27
27
|
|
|
28
28
|
### Website
|
|
29
29
|
[ui.policystudio.co](https://ui.policystudio.co/)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Integrate with local application
|
|
33
|
+
Inside the policy-studio-ui-vue project folder
|
|
34
|
+
``` npm link ```
|
|
35
|
+
|
|
36
|
+
Navigate to the application folder that you wants to link with the library
|
|
37
|
+
```` npm link @policystudio/policy-studio-ui-vue ````
|
package/babel.config.js
ADDED