@appmax_npm/ds-prime 1.0.0-alpha.19 → 1.0.0-alpha.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.
Files changed (3) hide show
  1. package/index.d.ts +1 -0
  2. package/index.js +1 -0
  3. package/package.json +3 -2
package/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  import type { Plugin } from 'vue';
2
+ import './css/index.css';
2
3
  export declare const AmDSPrime: Plugin;
3
4
  export default AmDSPrime;
package/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import Primevue from 'primevue/config';
2
2
  import { AmDSPrimeConfig } from './config/theme';
3
3
  import ToastService from 'primevue/toastservice';
4
+ import './css/index.css';
4
5
  export var AmDSPrime = {
5
6
  install: function (app) {
6
7
  app.use(Primevue, AmDSPrimeConfig);
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@appmax_npm/ds-prime",
3
- "version": "1.0.0-alpha.19",
3
+ "version": "1.0.0-alpha.20",
4
4
  "description": "Design System da Appmax baseado no Primevue",
5
5
  "author": "Appmax",
6
6
  "type": "module",
7
7
  "exports": {
8
8
  ".": "./index.js",
9
- "./*": "./*/index.js"
9
+ "./*": "./*/index.js",
10
+ "./css/index.css": "./css/index.css"
10
11
  },
11
12
  "dependencies": {
12
13
  "@primevue/themes": "^4.0.4",